我试图设置第一个设置为选择
<select name="id[21]" class="atributosSort"> <option value="107">1. Sin adaptadores de video (+$45)</option> <option value="108">2. Mini displayport to DVI (+$112)</option> <option value="109">3. Mini displayport to VGA</option> </select>
我试过了
jQuery(".atributosSort")[0].selectedindex = 0;
和
jQuery(".atributosSort option:first").attr('selected','selected');
两者都在讨论
How to make first option of <select > selected with jQuery?
但是当我检查DOM时,没有添加任何属性
我使用jQuery(),因为我在noConflict模式.这可能是问题吗?
当我运行两次尝试来获取所选值时,我在脚本控制台中没有任何错误
另一件可能是相关的事情是,我正在排序这个选项
function sortDropDownListByText() { // Loop for each select element on the page. jQuery("select").each(function() { // Keep track of the selected option. var selectedValue = jQuery(this).val(); // Sort all the options by text. I Could easily sort these by val. jQuery(this).html(jQuery("option",jQuery(this)).sort(function(a,b) { return a.text == b.text ? 0 : a.text < b.text ? -1 : 1 })); // Select one option. //jQuery(this).val(selectedValue); }); } // Use jQuery via jQuery(...) jQuery(document).ready(sortDropDownListByText);
我评论过jQuery(this).val(selectedValue);因为我认为那行正在选择一些选项,然后我不能覆盖它,但没有什么区别.
有任何想法吗?
谢谢
解决方法
你有没有尝试过:
jQuery(".atributosSort option:first-child").attr("selected",true);
?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。