现在的位置: 首页 > 综合 > 正文

asp+ajax

2013年01月05日 ⁄ 综合 ⁄ 共 883字 ⁄ 字号 评论关闭
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link href="css/thickbox.css" rel="stylesheet" type="text/css" media="screen" />
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/thickbox.js" type="text/javascript"></script>
<script type="text/javascript">
//此处在浏览器加载完毕后,执行window.onload
$(function(){
	//$.get(url,[data],[callback],[type]);
	//此处查询jQuery手册,也可以用下列语句写
	//$.ajax({type:'POST',url:'',data:'',success:''})
	//$.get("handle.asp",{rnd:new Date().getTime()},function(msg){$("#oDiv").html(msg);},"html");
});
</script>
</head>

<body>
<a href="handle.asp?width=300&height=200" class="thickbox" title="测试标题">查询统计</a>

handle.asp

<%
response.write("我是处理页面的web程序")
%>
</body>
</html>

抱歉!评论已关闭.