设计input搜索框提示文字点击消失的效果,提示文字与输入显示不同----->特别推荐

 

<!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=utf-8" />
<title>设计input搜索框提示文字点击消失的效果,提示文字与输入显示不同</title>
<script type="text/javascript">

function my_click(obj, myid)
{
 
  if (document.getElementById(myid).value == document.getElementById(myid).defaultValue)
  {
   document.getElementById(myid).value = '';
   obj.style.color='#000';
  }
  
 
 
}

function my_blur(obj, myid)
{
 if (document.getElementById(myid).value == '')
 {
  document.getElementById(myid).value = document.getElementById(myid).defaultValue;
  
  obj.style.color='#999'
 }
}
function my_load()
{
 document.getElementById("key").value = "123456789";
 document.getElementById("key").style.color = "#000";
}

</script>
</head>
<body onload="my_load();">
<table>
    <tr>
        <td>
        <input name="key" type="text" id="key" value="提示输入格式" size="30"
        onmouseover="this.focus();this.select();"
        onclick="my_click(this, 'key');"
        onBlur="my_blur(this, 'key');"
        style="color:#999" />
        </td>
    </tr>
</table>
</body>
</html>

你可能感兴趣的:(设计input搜索框提示文字点击消失的效果,提示文字与输入显示不同----->特别推荐)