我正在建立一个网站。左右相同。按下其中一个按钮时,仅更改主要部分。我查看了一些主题并尝试了这段代码:
<button id="item1">Go to topic 1</button>
<button id="item2">Another topic</button>
<div id="main"></div>
<script>
$(document).ready(function(){
$("#item1").click(function(){$("#main").load("page1.html");});
$("#item2").click(function(){$("#main").load("page2.html");});
});
</script>
第一个按钮(item1)工作得很好,但第二个按钮完全没有:(。我该如何解决?先谢谢。
编辑:今天下午所有按钮都有效。它可能是主机缓慢或其他东西。谢谢你的帮助。 :d答案 0 :(得分:0)
可能是因为您将此脚本放在page1.html
中答案 1 :(得分:0)
等了5个小时后,我再次测试它并且有效。可能是因为主机缓慢。谢谢你的帮助。 :d