问题描述
- 求大神,关于js $.get()的用法
-
$(document).ready(function() {
$.get('/Index/checkdo/id/{$id}',function(ret){
retime_flag = 0;
$('#time').html('');
if(ret == 'movesay'){
$('#msg').html('OK 检查通过,跳转中...');
if(returnurl){
setTimeout(function() {
window.location.href= returnurl;
},1000);
}else{
setTimeout(function() {
window.location.href= '/';
},1000);
}
}else{
$('#load_img').hide();
$('#msg').html('检查未通过!!!');
}
});
});
解决方案
完整的四个参数.
$.get([地址] , [请求参数,get 方法是queryString] , [回调方法, function(结果参数){ }] , [响应类型, json, text 等, 不正确的类型不会执行回调方法, 可不填写默认text])
解决方案二:
那是请求的url,这个{$id}会有个值得,这个的看是放了什么
解决方案三:
'/Index/checkdo/id/{$id}' 我想问下这个东西是神马0.0
解决方案四:
'/Index/checkdo/id/{$id}' 我想问下这个东西是神马0.0
解决方案五:
alsdkl elre sdf
test
时间: 2024-12-04 01:31:55