这是我的 test.php 页面,我正在尝试加载<< id="new-nav" >>
外部页面的内容。
情景如下:我想从我的菜单中单击 li并在该区域 <?php include 'Menu/Side-menu.html.php'; ?>
的 test.php 中加载内容 << id="new-nav" >>
<div id="left">
<?php include 'Menu/Side-menu.html.php'; ?>
</div>
<div id="main">
<p>This is a test</p>
<b>see the text:</b>
<ol id="new-nav"></ol>
</div>
<script>
$(document).ready(function(){
$("#test li").click(function (e) {
// Stop the link from changing the page
e.preventDefault();
// Your jQuery code.
$("#new-nav").load(('Menu/Side-menu.html.php').attr("href"));
});
});
</script>