当我为使用jQuery的网站编写插件时,我想知道,为什么一些使用该脚本的网站会收到错误:
Uncaught TypeError: Object #<Object> has no method 'mouseenter'
代码:
plugin.setBehavior = function() {
jQuery('#divname').mouseenter(function() {
show();
});
}
是否有没有mouseenter事件的jQuery版本或可能是失败的原因?
THX
答案 0 :(得分:0)
试试这个:
plugin.setBehavior = function() {
jQuery('#divname').bind("mouseenter",function() {
show();
});
}
如果live
不起作用, delegate
或bind