gpt4 book ai didi

jquery - 文本区域默认值

转载 作者:太空宇宙 更新时间:2023-11-03 19:39:22 25 4
gpt4 key购买 nike

我一直在使用以下方法在文本字段中放置默认值

<textarea name="message" id="message" cols="30" rows="5" value="Comment"
class="form_text text-input shadow" title="Comment"
onblur="if (this.value == '') {this.value = 'Comment';}"
onfocus="if (this.value == 'Comment') {this.value = '';}">
</textarea>

它部分起作用。该字段最初不显示默认值,但如果您在其中单击然后退出,而不输入任何内容,它会显示“评论”。

知道如何修改它以便在加载表单时出现“评论”。

最佳答案

不要使用值使用:

<textarea name="message" id="message" cols="30" rows="5"
class="form_text text-input shadow" title="Comment"
onblur="if (this.innerHTML == '') {this.innerHTML = 'Comment';}"
onfocus="if (this.innerHTML == 'Comment') {this.innerHTML = '';}">
Comment
</textarea>

关于jquery - 文本区域默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10129032/

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