gpt4 book ai didi

javascript - jQuery get,获取页面

转载 作者:行者123 更新时间:2023-11-28 15:44:59 27 4
gpt4 key购买 nike

我有一个 html 选择下拉菜单,当用户选择一个选项时,页面上其他地方的一些文本会发生变化。

$('.formload').change(function(){
var selected = $(this).find(':selected');
if (selected.html() == "Option 1"){
$('.optionvalue').html("info about option 1");
} else if (selected.html() == "Option 2"){
$('.optionvalue').html("info about option 2");
}
});

在 HTML 中:

<div class="optionvalue"> </div>

我希望能够从其他 html 页面中提取文本,而不是仅仅在此处传递文本。例如:

选择选项 1 时:

if (selected.html() == "Option 1"){
$('.optionvalue').get("option1.html");
}

我不确定如何解决这个问题。

最佳答案

可以使用Ajax方法$.ajax()检索其他页面的内容。

在 ajax 调用的 success() 处理程序中,您可以使用响应 HTML 填充 $('.optionvalue')

关于javascript - jQuery get,获取页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22701836/

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