我正在开发一个网站,并且在侧面菜单上有这个:
<a href="#" class="leftMenu" id="contact">Contact Us</a>
然后我有这个剧本
$(document).ready(function(){ $("#contact").click(function(){ $("#contents").load('home.php'); }); });
我的页面中有这个DIV:
<div class="contentWrapper" id="contents"></div>
显然,我要执行的操作是单击“联系我们”超链接时加载home.php,这是行不通的。我的代码有什么问题?
添加home.php页面网址而不是文件名。
home.php
$(document).ready(function(){ $("#contact").click(function(){ $("#contents").load('url to home.php'); }); });