var fn_rsi = function () {
jQuery(".rsi i").removeClass();
var v = jQuery(this).val();
if (v.length <= 8) {
jQuery(".rsi").html("<i class='rsi01'></i>");
}
else if (v.length <= 12) {
//jQuery(".rsi i").addClass("rsi02");
jQuery(".rsi").html("<i class='rsi02'></i>");
}
else {
jQuery(".rsi").html("<i class='rsi03'></i>");
}
}
jQuery(":password[name='new_pwd1']").keyup(fn_rsi).focus(fn_rsi).blur(fn_rsi);
jQuery("#btn-ok").click(function () {
var postData = {};
postData.old_pwd = jQuery(":password[name=pwd]").val();
postData.new_pwd1 = jQuery(":password[name=new_pwd1]").val();
postData.new_pwd2 = jQuery(":password[name=new_pwd2]").val();
postData.captcha = jQuery(":text[name=img-captcha]").val();
if (!postData.old_pwd) { alert("请输入当前密码"); return }
if (!postData.new_pwd1) { alert("请输入新密码"); return }
if (!postData.new_pwd2) { alert("请输入确认密码"); return }
if (!postData.captcha) { alert("请输入验证码"); return }
if (postData.new_pwd1 != postData.new_pwd2) { alert("新密码输入不一致"); return }
postData.old_pwd = encry(postData.old_pwd);
postData.new_pwd1 = encry(postData.new_pwd1);
postData.new_pwd2 = encry(postData.new_pwd2);
if (!
(
jQuery(":password[name=new_pwd1]").attr("pass-valid")
&&
jQuery(":password[name=new_pwd2]").attr("pass-valid")
&&
jQuery(":password[name=pwd]").attr("pass-valid")
&&
jQuery(":text[name=img-captcha]").attr("pass-valid")
)) {
jQuery(":text,:password").blur();
return; //验证不通过不能提交数据
}
$('#btn-ok').attr('disabled', "true");
jQuery.ajax({
url: "/Pwd/PostPwdModify",
type: "POST",
data: postData,
success: function (r) {
alert(r.Msg, function () {
if (r.Code == 1) {
window.location.reload();
}
});
jQuery(".switch-image").click();
$('#btn-ok').removeAttr("disabled");
}, error: function () { $('#btn-ok').removeAttr("disabled"); }
});
})
jQuery(".switch-image").click(function () {
jQuery.ajax({
url: "/Home/GetCaptchaUrl",
type: "POST",
data: {},
success: function (r) {
jQuery("#preview").attr("src", r.Url + "&r=" + Math.random());
jQuery(".check").show();
}
});
}).click();
补充:我知道怎么找新验证码了 但是怎么从上面找出插入MD5码的地址
[ 此帖被裂。在2014-03-28 22:35重新编辑 ]