国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
236B

  1. <!--
  2. function inputAutoClear(ipt)
  3. {
  4. ipt.onfocus=function()
  5. {if(this.value==this.defaultValue){this.value='';}};
  6. ipt.onblur=function()
  7. {if(this.value==''){this.value=this.defaultValue;}};
  8. ipt.onfocus();
  9. }
  10. //-->