gpt4 book ai didi

javascript - 使用 listgroup.js 时获取选定的值

转载 作者:行者123 更新时间:2023-12-03 08:23:04 26 4
gpt4 key购买 nike

我正在使用 bootstrap 3 和 listgroup.js ( https://github.com/rickardn/listgroup.js ) 将选择下拉列表直观地转换为列表。但是,一旦我将 class="list-group"添加到选择中,我的 JavaScript 就不再能够获取所选值。

HTML

<select id="selecteduser" name="selecteduser" class="list-group">
<option value="user1">user1</option>
<option value="user2">user2</option>
<option value="user3">user3</option>
</select>

JS

$("#selecteduser").change(

function() {
//get the selected value
var selectedValue = this.value;

//make the ajax call
alert("You selected " + selectedValue);
}

);

listgroup.js 引用了隐藏的实际选择,但是如何从 Javascript 中的隐藏选择中获取选定的值?

最佳答案

根据list-group.js插件documentation javascript API 尚未实现:

More to come Because this project just got off the ground not everything have been documented fully. Examples of functions that exist but which will be described here incrementally are

The JavaScript API

但这里有一个快速解决方法

$(".list-group > a").on('click', function() {

alert("You selected " + $(this).data('value'));

});

https://jsfiddle.net/v8tbsktq/

关于javascript - 使用 listgroup.js 时获取选定的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33670860/

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