我很难更改 Zurb 基础中选择框的值。我正在使用自定义表单,它只是隐藏实际的选择框并使用无序列表作为选择框。我的问题是更改选择框值的常用方法不起作用:
$('#selectboxID').val('something')
上面的代码假设选择框中每个选项的值与文本相同:
<option value="1">1</option>
我也试过:
$($('.dropdown ul li')[1]).addClass('current')
$($('.dropdown ul li')[0]).removeClass('current') //remove current class from the other one
但它也不起作用。