我有这个 INPUT,每次我们在里面点击它都会清除。
问题:我只想清除 value = exemplo@exemlo.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)">
有人可以帮我做到这一点吗?我不知道如何比较,我已经尝试过但没有成功。