html onfocus浏览器问题

时间:2011-05-05 09:54:13

标签: html browser onfocus

我正在尝试清除焦点上的文本区域。这是我用过的代码 -
<textarea type="text" name="Title" id="title" value="Title" onfocus="if (this.value==this.defaultValue) this.value='';" cols="20" rows="10" style="width:465px;color:grey;font-size:15px;" wrap="hard">Title</textarea>

这在Mozilla Firefox中完美运行,但在Opera中则不然。谁能告诉我为什么会这样呢?

1 个答案:

答案 0 :(得分:0)

我复制了你的代码并用Opera 11.01打开它,它运作良好。

您还可以尝试使用JQuery插件:http://plugins.jquery.com/project/placeholder 或使用带有属性placeholder="Title"的HTML 5表单。