gpt4 book ai didi

javascript - 如何在 selectize.js 中设置选定的选项值

转载 作者:行者123 更新时间:2023-12-01 13:51:33 24 4
gpt4 key购买 nike

我正在尝试设置要在 selectize.js 中选择的选项,如何做到这一点。

最初可以设置一些选项。那我该如何设置值。

 <select id="selectize">
</select>
var options=[
{value:0, text:"option 0"},
{value:1, text:"option 1"},
{value:2, text:"option 2"},
{value:3, text:"option 3"},
];


$('#selectize').selectize({
"options":options
});

$('#selectize').change(function(){
//$('#result').html("you select value="+$(this).val());
$('#selectize').val(1);

});

请在 jsfiddle 中找到代码

http://jsfiddle.net/rcun9zmf/

谢谢,

最佳答案

您必须先选择您的选择 input[0].selectize然后使用 native 方法getValue()的选择。
根据您的 fiddle ,这应该可以:

var options=[
{value:0, text:"option 0"},
{value:1, text:"option 1"},
{value:2, text:"option 2"},
{value:3, text:"option 3"},
];
$('#selectize').selectize({
"options":options
});

$('#selectize').change(function(){
var selectize = $("#selectize")[0].selectize;
$('#result').html("you select value="+ selectize.getValue());
});

JsFiddle

关于javascript - 如何在 selectize.js 中设置选定的选项值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31249999/

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