我有这个INPUT,每当我们点击它时它就会清除.
问题:
我想清楚只有value = exemplo@exemplo.com
<script type="text/javascript"> function clearThis(target) { target.value= ""; } </script> <input type="text" name="email" value="exemplo@exemplo.com" size="30" onfocus="clearThis(this)">
有人可以帮我这样做吗?
我不知道如何比较,我已经尝试但没有成功.
解决方法
<script type="text/javascript"> function clearThis(target){ if(target.value=='exemplo@exemplo.com'){ target.value= "";} } </script>
这真的是你想要的吗?