gpt4 book ai didi

javascript - 如何从下拉列表中获取选定的值?

转载 作者:行者123 更新时间:2023-11-28 08:21:13 25 4
gpt4 key购买 nike

我有一个下拉列表(DDL)...

我通常只使用 $('#ddl option:selected').val()

但是我已经存储了 jQuery 对象...

var myDDL = $('#ddl');

我不知道如何将变量 myDDLoption:selected 一起使用

不知道如何表达我的问题......

最佳答案

您只需在选择对象上调用val()即可获取所选值。

$('#ddl').val()

要获取变量只是为了知道可以使用 find

selectedVal = myDDL.find('option:selected').val();

The .val() method is primarily used to get the values of form elements such as input, select and textarea. In the case of select elements, it returns null when no option is selected and an array containing the value of each selected option when there is at least one and it is possible to select more because the multiple attribute is present, jQuery Docs

关于javascript - 如何从下拉列表中获取选定的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22936370/

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