文本框成为焦点时即清除文本框内容的实现代码

发布时间:2020-08-31编辑:脚本学堂
本文介绍了当某个文本框成为焦点时如何清除文本框内容的方法,成为焦点时清除文本框内容的实现代码,有需要的朋友参考下。

例子,文本框成为焦点时即清除文本框内容。
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>成为焦点时清除文本框内容_www.jb200.com</title>
<script>
window.onload = initAll;
function initAll(){
var clearText = document.getElementsByTagName("input");
for (var i=0; i<clearText.length; i++){
clearText[i].onfocus = function ( ){
this.value = "";
}
}
}
</script>
</head>
<body>
文本框一:<input type="text" name="text" id="clearText1" value="清除文本框一的内容"/><br/>
文本框二:<input type="text" name="text" id="clearText2" value="清除文本框二的内容"/><br/>
文本框三:<input type="text" name="text" id="clearText3" value="清除文本框三的内容"/>
</body>
</html>