gpt4 book ai didi

javascript - 为什么textArea不更新?

转载 作者:行者123 更新时间:2023-11-28 06:51:18 25 4
gpt4 key购买 nike

我已经检查了警报,我的值是“输入您的评论...”,但我的 if 语句返回 false。

谢谢。

function ClearText(e) {

//alert(document.getElementById('contactMe').value);
if (document.getElementById('contactMe').value == 'Enter your comment...') {
document.getElementById('contactMe').value = "";
}

}


var x = document.getElementById('contactMe');
x.addEventListener('click', ClearText, false);
<html>

<body>
<textarea id=contactMe rows=4 cols=40>Enter your comment...</textarea>
<script src="contactBox.js">
</script>
</body>

</html>

最佳答案

我明白你想要完成什么,你可以避免 所有这些都通过使用 html 属性 placeholder 来完成。 .

考虑以下代码。

<html>

<body>
<textarea id=contactMe rows=4 cols=40 placeholder='Enter your comment...'></textarea>
<script src="contactBox.js">
</script>
</body>

</html>

关于javascript - 为什么textArea不更新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32941218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com