我已经解决了这个问题,但没有任何工作似乎有点尴尬。我也使用了onfocus命令。
$(document).ready(function() {
var field = $('input[type="text"]');
field.focus(function() { //Empty the field on focus
var thisValue = $(this).val();
$(this).attr("value", "");
});
field.blur(function() { //Check the field if it is left empty
if ($(this).val() == "") {
//alert('This field can not be left empty');
$(this).val(thisValue);
}
});
});
我想我错过了或误认为一个字段名你能不能告诉我哪里出错了。