为了账号安全,请及时绑定邮箱和手机立即绑定

在另一个文件中给 function增加内容该怎么写

在另一个文件中给 function增加内容该怎么写

有只小跳蛙 2018-11-12 16:13:35
test.html 里调用到2个js文件 a.js和b.js:a.js 文件里有个function test(){     console.log(1); }现在想在b.js里给 test function 增加一个console.log(2);目标要做到无论在哪里调用test()都要输出1和2,该怎么写啊
查看完整描述

1 回答

?
慕田峪9158850

TA贡献1794条经验 获得超7个赞

var rawTest = test;

test=function(){

    rawTest();

    console.log(2);

}

//
test();

查看完整回答
反对 回复 2018-12-14
  • 1 回答
  • 0 关注
  • 519 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信