日期:2014-05-18 浏览次数:20499 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> <script> function check() { if(document.form1.name.value=="可以输入学号姓名进行搜索") { document.form1.name.value =""; document.form1.name.focus(); document.getElementsByTagName("input")[0].style.color="red"; } } function chesk() { if(document.form1.name.value=="") { document.getElementsByTagName("input")[0].style.color="#cccccc"; document.form1.name.value="可以输入学号姓名进行搜索" } } </script> <style> .show{border:1px solid red; color:#999999; width:200px;} </style> </head> <body> <form name ="form1"> <label> <input type="text" name="name" class="show" value="可以输入学号姓名进行搜索" onmousemove="check()" onmouseout="chesk()" /> </label> </form> </body> </html>