我有一个文本区域,其中填充了文本,如果您单击它但在离开时不输入任何内容,则将再次填充默认的预填充文本;我不想允许在我的表单中提交预填文本;我该如何处理这个问题?
我的代码:
jQuery(document).ready(function($) {
$("textarea").val("Please enter your email content here...");
$("textarea").focusout(function() {
if ($(this).val() === "") {
$(this).val("Please enter your email content here...");
}
});
$("textarea").focus(function() {
if ($(this).val() === "Please enter your email content here...") {
$(this).val("");
}
});
});