我正在尝试创建一个文本区域,其中将有一些示例供用户在单击该区域之前查看(示例消失)并且他们可以添加自己的内容。到目前为止我已经得到了这个,但是当我打开页面时它没有加载示例,我尝试使用和 onload 但这似乎不起作用,如果我单击该区域然后模糊,该功能可以正常工作,但是用户不应该这样做,任何我出错的想法
<textarea STYLE='background:white; height:80; width:100%;' name="kpi_notes" value="Example"
onfocus="if (this.value == 'Example') {
this.value = '';
this.style.color = '#B300A1';
}"
onblur="if (this.value == '') {
this.value = 'Example'
this.style.color = '#919191';
}"
style="color:#919191"; ></textarea>