我在下面有这段代码:
jQuery.noConflict();
var x=0;
myw=0;
oin="";
jQuery(document).ready(function () {
if(x >3){
$("img:odd").unbind("mouseenter");
return false;
}
jQuery("img:odd").mouseenter(function(e) {
// oin="";
console.log(e);
console.log(this);
console.log(this.src);
oin=this.src;
this.src="snowdrop.png";
myw=this.width;
this.width=100;
x=x+1;
console.log(x);
jQuery(this).css("opacity", 0.5);
}).mouseout(function(e) {
this.width=myw;
this.src=oin;
jQuery(this).css("opacity", 1.0);
});
});
代码运行良好,但我想做的是在 3 mouseovers(mouseenter) 之后我想禁用 mouseenter 事件。不知道怎么解绑?
谢谢,吉姆