在file1.js上,我有以下代码:
$(document).trigger("method1",param);
在file2.js上,我有这样的代码:
代码块1 :
$(document).on("method1",function(event,param){
//do something here
});
代码块2 :
function method1(){
// do something here also
}
以下是我的问题:
(1)你能解释一下这些代码块的区别吗?
2)文件1.js将触发哪些代码块?
例如,我有:
<a href="" id="#activador">asdasd</a>
...
//js code in other place or other file hard to find, I have this:
$('#activador').click(simplefunction); or
$(document).on('click','#activador',simplefunction); or
$('#activador').l