使用jQuery在dropdownlist中设置默认值
我的下拉列表中有很多选项,例如:
<option value="1">it's me</option>
我需要选择在标签中有价值 的是我自己的 选项,而不是按属性1
。
我该如何使用jQuery?
回答:
如果您想为此使用jQuery,请尝试以下代码。
$('select option[value="1"]').attr("selected",true);
更新:
在Vivek发表评论后,正确指出了steven spielberg想通过其Text值选择该选项。
下面是更新的代码。
$('select option:contains("it\'s me")').prop('selected',true);
您需要使用:contains(text)
选择器通过包含的文本进行查找。
当获取和设置属性时,jQuery prop还为InternetExplorer提供了更好的支持。
以上是 使用jQuery在dropdownlist中设置默认值 的全部内容, 来源链接: utcz.com/qa/408930.html