AJAX即时返回后台值

前端之家收集整理的这篇文章主要介绍了AJAX即时返回后台值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
function strEncrypt(strEncryptString,SessionKey) { var pws = ""; var EncryptAppSecret = "";//安全验证密文 var EncryptUrl = '/Action/Encrypt.ashx'; //var AppSecret = document.getElementById("TxtAppSecret").value; //明文 $.ajax({ type: "POST",url: EncryptUrl,//保存XML dataType: 'text',data: { EncryptString: strEncryptString,EncryptPath: SessionKey },async: false,//同步 success: function Encrypt(result) { pws = result; } }); //endregion 重新计算加安全密字符串 return pws; } //end 对参数加密 原文链接:https://www.f2er.com/ajax/163775.html

猜你在找的Ajax相关文章