我搜索了整个网络并没有找到解决方案
我需要禁用 div 上的点击事件,然后写入文件,然后启用 div 上的点击事件。
所以,我在 div #method 上有切换事件:
function openData(){
$.post("writeFile", {'file':fileWrite})
.done(function(data) {
$('#method').on('click',*);
});
}
$('#method').toggle(function(){
$('#method').off('click');
openData();
},function(){
... other similar stuff ...
});
我需要启用点击 div #method .. 这有效: $('#method').on('click',callFunction); 但我必须调用一些函数,所以我想调用像 $('#method').on('click',$('#method').toggle(function());
这可能吗?是否可以只启用像 $('#method').on('click') 这样的 div #method 的点击并且它可以工作?
我会很高兴得到任何帮助。