代码之家  ›  专栏  ›  技术社区  ›  Kyle

Textarea value=“value”加载时不工作,但将自动模糊

  •  1
  • Kyle  · 技术社区  · 14 年前

    Here is my jsfiddle example ,textarea不显示值onload,但将onblur,textarea不接受value属性吗?

    1 回复  |  直到 14 年前
        1
  •  5
  •   Sarfraz    14 年前

    Here is the solution :)

    因为你用的是 textarea

    <textarea class="jsf" name="msg" onblur="if(this.value=='') this.value='Write here!';" onfocus="if(this.value=='Write here!') this.value='';">Write here!</textarea>