$.ajax中的 jsonp : "callback", 10
$(document).ready(function(){$("#dayTitle").click();$(".reportList").on("click",funct...
$(document).ready(function() {
$("#dayTitle").click();
$(".reportList").on("click",function(){
$.ajax({
type : "post",
//日报
url : "/workReport/list.do",
dataType : 'jsonp',
jsonp : "callback",
data : {
"type" : 1,
"ifPage":"no",
},
async : false,
success : function(data) {
var item = data.reportList;
if(typeof(item)!= "undefined")
item=item.length;
else
item=0;
if(item == 0){
$(".reportTable").html('没有工作报告');
}else{
$("#reportTbody").html("");
$.each(data.reportList, function(i,n){
var reportTime=new Date(n.reportTime*1000);
reportTime=reportTime.format("yyyy-MM-dd");
if(i == 10) {
return false;
}
var taskCon = $('<tr>'+
'<td><a href="/workReport/item.html?id='+n.id+'"><span class="label label-info"><i class="icon-picture"></i> 查看</span></a>'+
'</td><td>'+n.staffName+
'</td><td>'+reportTime+
'</td><td>'+n.content+'</td>');
$("#reportTbody").append(taskCon);
});
}
}
}); //ajax end
})
请问一下这里的jsonp: "callback", 有什么用 ,jsonp是自己定义的吗? 展开
$("#dayTitle").click();
$(".reportList").on("click",function(){
$.ajax({
type : "post",
//日报
url : "/workReport/list.do",
dataType : 'jsonp',
jsonp : "callback",
data : {
"type" : 1,
"ifPage":"no",
},
async : false,
success : function(data) {
var item = data.reportList;
if(typeof(item)!= "undefined")
item=item.length;
else
item=0;
if(item == 0){
$(".reportTable").html('没有工作报告');
}else{
$("#reportTbody").html("");
$.each(data.reportList, function(i,n){
var reportTime=new Date(n.reportTime*1000);
reportTime=reportTime.format("yyyy-MM-dd");
if(i == 10) {
return false;
}
var taskCon = $('<tr>'+
'<td><a href="/workReport/item.html?id='+n.id+'"><span class="label label-info"><i class="icon-picture"></i> 查看</span></a>'+
'</td><td>'+n.staffName+
'</td><td>'+reportTime+
'</td><td>'+n.content+'</td>');
$("#reportTbody").append(taskCon);
});
}
}
}); //ajax end
})
请问一下这里的jsonp: "callback", 有什么用 ,jsonp是自己定义的吗? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询