我正在使用一个需要jQuery 1.3.2的程序,并且无法使.click()函数正常工作,但是我可以使用.hover()这样的函数来工作。
这很好用:
$(document).ready(function() {
$("#alert_button").hover(function(){
alert("The monitor has been notified - please wait in your room and they will be by shortly");
});
});
但这不是:
$(document).ready(function() {
$("#alert_button").click(function(){
alert("The monitor has been notified - please wait in your room and they will be by shortly");
});
});
1.3.2不支持.click()吗?如果没有,那么可以使用另一种事件处理程序吗?