1

我已经解决了这个问题,但没有任何结果似乎有点尴尬。我也使用了 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);
        }
    });
});​

我想我错过了或弄错了一个字段名,你能告诉我哪里出错了。

4

0 回答 0