我一直在使用以下内容在文本字段中放置默认值
<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>
它部分有效。该字段最初不显示默认值,但如果您在其中单击然后退出,而不输入任何内容,它会显示“评论”。
知道如何修改它,以便在表单加载时出现“评论”。