Closed. This question is off-topic。它当前不接受答案。
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
6年前关闭。
如何清除文本字段onfocus(如果它包含零)和onfocusout(如果它为空,然后放零)?通过获取文本字段的类在每个文本字段中进行全局设置?
DEMO
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
6年前关闭。
如何清除文本字段onfocus(如果它包含零)和onfocusout(如果它为空,然后放零)?通过获取文本字段的类在每个文本字段中进行全局设置?
最佳答案
您可以使用模糊和聚焦
$('textarea').on('focus', function () {
if ($(this).val() == "0") {
$(this).val("");
}
});
$('textarea').on('blur', function () {
if ($(this).val() == "") {
$(this).val("0");
}
});
DEMO
07-24 20:02