码迷,mamicode.com
首页 > 其他好文 > 详细

defaultValue属性包含表单元素的初始值

时间:2016-05-28 17:23:29      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

 1     <script type="text/javascript">
 2         $(function(){
 3             $(‘input[type="text"]‘).focus(function(){
 4               $(this).val(‘‘);
 5             }).blur(function(){
 6               $(this).val(this.defaultValue);    
 7             });
 8             /*$(‘input[type="text"]‘).focus(function(){
 9             $(this).val(‘‘);
10             });
11             $(‘#address‘).blur(function(){
12             $(this).val($addressTxt);    
13             });
14             $(‘#password‘).blur(function(){
15             $(this).val($passwordTxt);    
16             });*/
17         });
18     </script>

 

defaultValue属性包含表单元素的初始值

标签:

原文地址:http://www.cnblogs.com/vscss/p/5537616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!