jquery获取密码输入框内的密码

来源:互联网 发布:太阳能功率优化器 编辑:程序博客网 时间:2024/06/09 17:18
$("input[type=password]").blur(function(){  alert($(this).val())}); 

0 0