我希望使用查询和'
来调用方法我该怎么做?
我试过了:
$(img).on('mousedown', test());
答案 0 :(得分:2)
删除回调功能中的括号
$(":image").on('mousedown', test);
// function define
function test(){
alert("mouse is down");
}
答案 1 :(得分:-1)
这就是你需要的:
$(img).on('mousedown', function(){
test();
});