我正在尝试运行以下脚本,但我不能,有什么建议吗?关键是我试图从其他页面调用外部内容。当我单独编写它时没关系,但是当我尝试从列表或单击加载它时,它不能按预期工作
<div id="test">
<a href="1/1.html">text 1</a>
<a href="1/2.html">text 1</a>
</div>
<b>see the text:</b>
<ol id="new-nav"></ol>
<script>
$("#test").click(function () {
$("#new-nav").load("href");
});
</script>