说我有:
<div id="name" class="button"></div>
在 javacript 文件中,我为类按钮和 id 名称定义了单击操作,例如:
$("#name").click(function(event){
alert("hi");
})
$(".button").click(function(event){
alert("bye");
})
当我单击该 div 时,我会在“再见”警报之前收到“嗨”警报,因为“嗨”出现在“再见”上方吗?或者其他什么决定了首先发生什么?如果这两个函数在不同的文件中怎么办?那么首先包含哪个javascript文件(出现在更靠近html文件的顶部)是否重要?我认为 jQuery 与此无关,对吧?