当输入框中有内容时,触发失焦事件清空输入框中的内容?
只需要取出输入的值,重新赋值并且为空就可以了
<!DOCTYPE HTML>
<html>
<head>
<title>javascript</title>
<script type="text/javascript">
function clear_value(){
document.getElementById("user").value="";
}
</script>
</head>
<body >
<p>账号:<input type="text" id="user" name="name" onblur="clear_value()"></p>
</body>
</html>
重新运行一下试试