为什么.on('click')失败了

时间:2013-06-07 12:06:06

标签: jquery

我使用jQuery #content#container加载到.load,并在加载的内容中加载.mybutton

我将click事件附加到整个html,以确保元素在内容加载之前就已存在:

$("html").on('click', '.mybutton', function(event) {
// do all sorts of stuff
});

但是,每隔一段时间,只需一次点击一下,该按钮就无法工作。

可能是什么原因,以及如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

你可以试试这个

 $("html").on('click', '.mybutton', function(event) {
// do all sorts of stuff  
});

这是工作示例 http://jsfiddle.net/UhFsB/

答案 1 :(得分:0)

这可能是与CSS相关的问题。