我在我的项目中基本编写了 ajax 函数,然后我打开了 firebug,我看到了这个数字,我想知道发送的数字是什么或数字的含义是什么。非常感谢你。
示例代码:
$(".index_page").click(function(){
$.ajax({
url: "ajax/index.php",
cache: false
}).done(function( raw_html ){
$("#content").empty();
$("#content").append(raw_html);
});
});