posts - 0,  comments - 19,  trackbacks - 0
1
<input name="user" type="text" id="user" size="50" onblur="if(this.value=='')

  {this.value='默认值';}" onclick="if(this.value='默认值')

  {this.value='';}" onfocus="if(this.value='默认值'){this.value='';}" value="默认值" />

2
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charsetGB2312" />
  <meta name="keywords" content="" />
  <meta name="description" content="" />
  <title>使文本框点击时文字消失脚本</title>
 </head>
 <body>
  <input type="text" value="请输入您的姓名" id="myinput" size="60" />
 </body>
</html>
<script language="JavaScript" type="text/javascript">
   function addListener(element,e,fn){
        if(element.addEventListener){
             element.addEventListener(e,fn,false);
         } else {
             element.attachEvent("on" + e,fn);
          }
   }
   var myinput = document.getElementById("myinput");
   addListener(myinput,"click",function(){
    myinput.value = "";
   })
   addListener(myinput,"blur",function(){
    myinput.value = "请输入您的姓名";
   })
</script>

3
<!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" c />
<title>点击文本框,提示说明字消失!</title>
<script type="text/javascript" src="http://www.veryhuo.com/uploads/common/js/jquery-1.4.2.min.js"></script>
</head>
<body>
<script>
$(document).ready(function(){
$("TEXTAREA,input[focucmsg]") .each (function(){
$(this).val($(this).attr("focucmsg"));
$(this).val($(this).attr("focucmsg")).css("color","#979393");
$(this).focus(function(){
if($(this).val() == $(this).attr("focucmsg"))
{
$(this).val('');
$(this).val('').css("color","#6b6969");
}
});
$(this).blur(function(){
if(!$(this).val()){
$(this).val($(this).attr("focucmsg"));
$(this).val($(this).attr("focucmsg")).css("color","#979393");
}
});
});
});
</script>
<input name="" type="text" focucmsg="请输入关键字...?"  />
<textarea  style="width:150px; height:50px;" name="" cols="" rows="" focucmsg="把自己的心情写上来吧?"> </textarea>
</body>
</html>
posted on 2012-07-31 11:03 canry Tong 阅读(9876) 评论(2)  编辑  收藏 所属分类: jsp

FeedBack:
# re: 点击input框里面值置空
2014-11-28 11:38 | 23424324
1321231  回复  更多评论
  
# re: 点击input框里面值置空
2016-08-05 09:17 | ttt
aaa  回复  更多评论
  

只有注册用户登录后才能发表评论。


网站导航:
 
<2016年8月>
31123456
78910111213
14151617181920
21222324252627
28293031123
45678910

留言簿

文章分类

文章档案

搜索

  •  

最新评论