Posted in Javascript onApril 28, 2014
<!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>
当某个文本框成为焦点时即清除文本框内容
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@