function jsendpwd()
{
$("#spwdbtn").attr("disabled", true);
$.ajaxSetup({async : true, cache : false, type: "POST"});
$.getJSON('/json/sendpwd', $("#getpwdform").serialize() ,
function(json){
if(json.result != true) { alert(json.msg); }
else { alert(']密码已经发送到你的邮箱.'); }
$("#spwdbtn").attr("disabled", false);
});