gpt4 book ai didi

jQuery - 获取选择值并使用多选菜单更新 Div

转载 作者:行者123 更新时间:2023-12-01 07:49:53 25 4
gpt4 key购买 nike

jsFiddle:https://jsfiddle.net/x9bbb14n/

作为示例,我有以下 HTML:

<select name="sweets">
<option>Chocolate</option>
<option selected="selected">Candy</option>
<option>Taffy</option>
<option>Caramel</option>
<option>Fudge</option>
<option>Cookie</option>
</select>
<div class="sweets"></div>

<select name="cars">
<option>Ford</option>
<option selected="selected">Jaguar</option>
</select>
<div class="cars"></div>

我有这个 jQuery

$( "select" ).change(function () {
var str = "";
str = $( "select option:selected" ).text();
$( "div" ).text( str );
})
.change();

我知道这是不正确的,但我希望能够选择一个选项及其要更新的 DIV,然后转到另一个菜单,选择一个选项并更新其DIV

我遗漏了什么明显的东西吗?

谢谢

最佳答案

您可以使用当前单击的元素上下文以及下一个选择器来定位所需的 div:

$( "select" ).change(function () {
var str = $(this).find("option:selected" ).text();
$(this).next().text( str );
}).change();

Working Demo

关于jQuery - 获取选择值并使用多选菜单更新 Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31270974/

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