-2

我知道 if 语句结束时有一个小错误。

谁能告诉我,如何在 If 语句中声明 click 函数?

if (($("#target").click(function () {
    $("#thediv").scrollTop = $("#thediv").scrollHeight;
});
})
else {
    $("#thediv2").scrollTop = $("#thediv").scrollHeight;

}
4

1 回答 1

0

您可以将其绑定到

$('document').on('click',function(event){
 if(event.target.id == 'target'){ ... }
 else {}
...
})
于 2013-04-11T08:30:39.810 回答