当某个文本框成为焦点时即清除文本框内容_Javascript教程-查字典教程网
当某个文本框成为焦点时即清除文本框内容
当某个文本框成为焦点时即清除文本框内容
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:成为焦点时清除文本框内容window.onload=initAll;functioninitAll(){varclearT...

复制代码 代码如下:

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>成为焦点时清除文本框内容</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>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类