$('#lPass').focus(function() {
if (this.value == this.defaultValue) this.value = '';
$(this).after('<input type="password" id="lPass" size="10" value="'+this.value+'"/>').remove();
}).blur(function() {
alert(1);
});
<input id="lPass" type="text" size="10" value="Password"/>
的onblur不工作。
任何想法?的jQuery的onblur不工作
.live告訴jQuery的,你要做到這一點的東西無論是在原始文件或用JavaScript來做。在引號這第一部分功能之前,告訴它你要找什麼樣的事件爲(重點在一審中,模糊在第二)。然後你定義你想要發生的事情。 – 2010-03-01 12:27:00
.live被移除的jQuery 1.9+的,使用。對代替 – 2013-02-21 14:40:04