`
fireflyman
  • 浏览: 113380 次
  • 性别: Icon_minigender_1
  • 来自: 火星
社区版块
存档分类
最新评论
收藏列表
标题 标签 来源
文本框 js 控制文本框内文字
<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="请输入关键字..." /> 
Global site tag (gtag.js) - Google Analytics