使用一种方法后如何重新绑定点击事件?
$("#file").one("click", function(event)
{
// code works only one time as expected.
$(this).bind("click") // attempting to rebind it again after executing code but not binding again tested below.
});
在单击上面的一种方法之前,单击事件已附加到元素#file 但单击一种方法后,它显示单击事件已使用以下代码取消绑定
$(".viewAttachedEvents").click(function()
{
var eventFile = $._data(document.getElementById("file"),"events");
var File = JSON.stringify(eventFile);
alert("eventFile: "+File+");
});