jquery – 根据选择设置第一个选项

我试图设置第一个设置为选择

我有

<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);

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...