网页中,在填写表单时候,往往会有提示语,比如搜索框input中“请填写要搜索的内容”,当鼠标点击上去提示语消失;如果没有填写内容,鼠标点击其他地方,这个提示语又出现了。下面以textarea为例:
<textarea onFocus="if(this.value=='这里是提示语') this.value='';" onblur="if (this.value=='') this.value='这里是提示语';">这里是提示语</textarea>