【发布时间】:2010-10-22 20:19:21
【问题描述】:
我正在尝试更改 <textarea> 元素上的 value。此代码在 Firefox 中运行良好,但 IE 声称存在错误 onblur 并且没有设置值。
<textarea
name="comment"
id="comment"
rows="8"
cols="80"
style="color:grey;"
onfocus="if(this.value=='Add a comment...') {this.style.color='black'; this.value='';}"
onblur="if(this.value=='') {this.style.color='grey'; this.value='Add a comment...';}">Add a comment...</textarea>
我做错了什么?
【问题讨论】:
标签: javascript html internet-explorer dom textarea