我尝试根据选择框中的选择将内容加载到 Intex 中的 div 中。它不起作用,所以出了点问题。我做了一个四页的例子来基本展示它是如何的:
Index.html
one.html
two.html
three.html
在索引中,我有一个 ID 为“selectchoice”的选择元素:
<select id="selectchoice>
<option>Select a choice</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
我在索引中也有一个 id 为“get_content”的 div:
<div id="get_content"></div>
当我将选择元素更改为选项 1 或 2 或 3 时,我想将 one.html 或 two.html 或 three.html 加载到 div get_content 中。
然后,如果 Index.html,我将此代码放在标头中,在 jQuery 文件链接之后。
<script>
$("#selectchoice").change(function(){
$("#get_content").load("");
$("#get_content").load("one.html");
$("#get_content").load("two.html");
$("#get_content").load("three.html");
});
然后我运行该站点(在具有其他加载脚本的服务器上运行在同一站点上),但它不工作。怎么了?:/
对于脚本和编程来说有点新,所以如果有任何标准错误,不要感到惊讶。
有人发现错误吗?