控制文本框内文字

失去焦点时,显示默认文字,获得焦点时,清空默认文字。

 

<script type="text/javascript">
  function clearText(theField)
  {
    if (theField.defaultValue == theField.value)
      theField.value = '';
  }

  function addText(theField)
  {
    if (theField.value == '')
      theField.value = theField .defaultValue;
  }
</script>
<input type="text" name="name" onblur="addText(this);" onfocus="clearText(this)" value="请输入关键字..." /> 

你可能感兴趣的:(JavaScript)