私はこれに取り組みましたが、何もうまくいかず、少しぎこちないようです。 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);
}
});
});
フィールド名を見逃したか、間違えたようです。どこで間違ったのか教えてください。