gpt4 book ai didi

jquery - 如何使用 jQuery 将静态 HTML 文件的内容加载到 DIV 中?

转载 作者:行者123 更新时间:2023-12-01 00:58:57 25 4
gpt4 key购买 nike

我有一堆包含文本数据的静态 HTML 文件:

/a.html
/b.html
/c.html

我的主页上有一个选择/下拉框 (#loadExternal)。

使用 jQuery,如何使用 select/dropdown 的 onChange 事件来触发相应的外部页面加载到我的 container DIV 中?

<html>

<select id="loadExternal">
<option id="a" value="a" selected="selected">Load a.html</option>
<option id="b" value="b">Load b.html</option>
<option id="c" value="c">Load c.html</option>
</select>

<div id="container">
</div>

</html>

最佳答案

$("#loadExternal").change( function () {
page = $(this).val();
$("#container").load(page + ".html")
});

关于jquery - 如何使用 jQuery 将静态 HTML 文件的内容加载到 DIV 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4515674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com