代码23中16行至25行代码
发表在ASP.NET图书答疑
2019-03-30 悬赏:20 学分
《ASP.NET项目开发实战入门》第1章 鱼和熊掌网站—“让您的选择更轻松” 36页-37页
是否精华
是
否
版块置顶:
是
否
function UpdateText(a, b) {
$(a).remove();//移除当前控件
var msg = $("#" + b).html('<input id="pwd1" type="password" onblur="UpdatePwd(this,\'' + b + '\')" style="border:none; background-image:url(Systemimg/输入框Y.png); width:208px; height:28px; line-height:30px; padding-left:8px;" maxlength="10" />');
setTimeout(function () { $("#pwd1").focus(); }, 100);
}
运行时,鼠标点击密码输入框,密码输入框就消失不见了