function getValidateCode(){probeAuthStatus(function () { getCodeAction();}, function () {var url = window.location.href;window.location.href=locationUrl; });}函数里面调用的方法,我理解。希望大神能普及一下这种函数的形式,调用顺序,使用技巧。
2 回答
慕森王
TA贡献1777条经验 获得超3个赞
这个getValidateCode(){
应该是验证码 probeAuthStatus(function () {
getCodeAction();
这个是执行的方法 getCodeAction() 去验证验证码是否正确
function () {
var url = window.location.href;
window.location.href=locationUrl;
});
这个是回调函数 在上一个方法里会有回调函数回调到JS 然后跳转页面
- 2 回答
- 0 关注
- 323 浏览
添加回答
举报
0/150
提交
取消