此代码中使用的项目是通过AJAX加载的。这就是我使用live()
。
但无法识别模糊/焦点。 Click()
但不是模糊/焦点。
我正在使用FF。
代码:
$(".card_signup_form input").live('focus', function(){
$(this).css("color","#666666");
$old_value = $(this).attr("value");
$(this).attr("value", "");
})
.live('blur', function(){
if ($(this).attr("value") == "" ) {
alert($old_value);
};
});
答案 0 :(得分:0)
一些事情:
您是否尝试在Firefox中查看调试控制台以查看您的代码是否丢失了任何错误?按Ctrl + Shift + J启动它。