gpt4 book ai didi

javascript - 将同一页面的内容加载到 div 中,而不是单击外部链接

转载 作者:行者123 更新时间:2023-12-03 12:16:29 25 4
gpt4 key购买 nike

我使用下面的代码从外部链接加载内容,但速度较慢,具体取决于网络速度。我想将内容托管在同一页面上并从中加载它,或者了解如何无论互联网速度如何都能更快地加载它。

<script>
function dynamic_Select(ajax_page, currency) {
$.ajax({
type: "GET",
url: ajax_page,
data: "ch=" + currency,
dataType: "html",
//dataType: "text/html", //<--UPDATE: DELETING THIS LINE FIXES EVERYTHING
//<--UPDATE2: DON'T DELETE; REPLACE "test/html" with "html"
success: function (html) {
$("#txtResult").html(html);
}
});
}
</script>

我的html代码是

<input type="radio" name="currency" 
id="perfectmoney" value="Perfect Money"
onChange="dynamic_Select('fetchbuy.php', this.value)" />

最佳答案

您尝试过加载 JQuery 吗?

    $('#your_div').load(url);

当然,您需要 url 是一个 Controller 路径,您可以在其中使用要加载的 html 代码呈现页面

关于javascript - 将同一页面的内容加载到 div 中,而不是单击外部链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24674727/

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