ajax用法

Posted jiangcm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax用法相关的知识,希望对你有一定的参考价值。

1.将其他页面加载进来

<head>
<script type="text/javascript" src="~/Scripts/jquery-1.10.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#b01").click(function(){
htmlobj=$.ajax({url:"Register",async:false});
$("#myDiv").html(htmlobj.responseText);
});
});
</script>
</head>
<body>

<div id="myDiv"><h2>通过 AJAX</h2></div>
<button id="b01" type="button">改变内容</button>

</body>

2.点赞

http://blog.csdn.net/chinacsharper/article/details/9748639













以上是关于ajax用法的主要内容,如果未能解决你的问题,请参考以下文章

ajax定义和用法

AJAX 的简单用法:

原生的ajax和jQuery Ajax的用法

jqPaginator分页(ajax用法和form表单提交用法)

最简单ajax,$.post()用法

Ajax简单用法