我有一个这样的代码块:
function doSomething() {
someVar.on("event_name", function() {
$('#elementId').click(function(e) {
doSomething();
});
});
}
// and on document ready
$(function () {
$('#anotherElemId').click(function () {
doSomething();
});
});
我遇到的问题是,当我doSomething()
从anotherElemId
单击事件(绑定在准备好的文档上)调用它时,它按预期工作,但从elementId
单击递归调用它不起作用。
有任何想法吗?思考是我所缺少的微不足道的东西。