我希望我的页面内容通过 AJAX 出现在我网站的主内容窗口中......至少这样我可以使用 jquery 为其添加一些很酷的效果,例如切换/隐藏/滑动等......我的问题我目前正在让 ajax 调用正常工作。有人可以查看下面的代码并告诉我哪里出错了吗?非常感激。
$( "#serviceOffered" ).click(function(){
$.ajax({
url : "ajax/getPage.php",
type : POST,
async : true,
success : function(result){
$( "#contentMain" ).html(result);
}
})
})
HTML 代码
<ul id="menu" style="font-size:14px; width:170px; margin-top:40px; margin-bottom: 40px;">
<li><a href="#" id="serviceOffered">Services Offered</a></li>
</ul> <div id="contentMain"></div>
获取页面.php
<?php echo "test get page"; ?>