前台
代码如下:
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
html xmlns="http://www.w3.org/1999/xhtml"
head
title无标题页/title
script type="text/javascript" src="jquery/jquery-1.2.6.js"/script
script type="text/javascript"
//这个方法把ajax方法封装一下,方便调用。
function myajax(){
//用此法传递数据
var arr={
"name":"tree",
"id":"123"
};
$.get(
"ajax.aspx",
arr,
callback,
"json"
);
}
//回调函数