function getJosnData(){
$("#getLogInfo").toggle(
function(){
$.ajax({
url:"xxxxxxx.do?actionFlag=abc&randomFlag="+new Date().getTime(),
type: "POST",
async: false ,
dataType: "json",
data: { applyFormID:$("#poFormID").val()},
success: function(data){
//调用创建表和填充动态填充数据的方法.
alert('success');
createShowingTable(data)
},
error: function()
{
alert("<bean:message key="sys.err.unknowerror"/>");
}
});
},
function(){
$("#dataTable").html("");
}
);
}
------解决方案--------------------
你是
<input type="button" id="getLogInfo" onclick="getJosnData()">这样调用?
是的话
去掉onclick="getJosnData()"
直接
<input type="button" id="getLogInfo">
$("#getLogInfo").toggle(
function(){
$.ajax({
url:"xxxxxxx.do?actionFlag=abc&randomFlag="+new Date().getTime(),
type: "POST",
async: false ,
dataType: "json",
data: { applyFormID:$("#poFormID").val()},
success: function(data){
//调用创建表和填充动态填充数据的方法.
alert('success');
createShowingTable(data)
},
error: function()
{
alert("<bean:message key="sys.err.unknowerror"/>");
}
});
},
function(){
$("#dataTable").html("");
}
);
------解决方案--------------------
------解决方案--------------------
------解决方案--------------------
------解决方案--------------------
没有这种事情,你debug看下吧。这里看不出什么东西
------解决方案--------------------
LZ把两个function调过来试试