$j(document).ready(function(){
$.ajax({
type: "POST",
url:"url",
cache: false,
success: function(response){
$('#investigationGrid').html(response);
},
error: function(){
alert('Error while request..');
}
});
});
答案 0 :(得分:0)
你有一个错字;删除“j。”
$(document)
答案 1 :(得分:0)
将$j(document)
替换为$(document)