更改select元素后,选择属性未更改

时间:2012-05-29 09:09:31

标签: javascript jquery html dom

我有一个表,其中几列包含select元素。在tfoot中,我为每行使用一个输入元素,用于根据select元素中的选定值过滤行。

当加载表并直接使用选择过滤列时,它会起作用并且表被过滤。

但是当在select元素中进行更改时,过滤器功能并未注意到值已更改。

检查html我可以看到“selected”属性仍然在加载时选择的选项上。因此,在进行实际更改时(在FF和Chrome中都标识),它不会更新。

但是从jQuery中,搜索所选值(.find(":selected"))是有效的。所以我想我可以使用它来查找值,然后将所选属性设置为所选的任何内容。这就是我尝试这样做的方式:

$("select[id^='qu_owner']").live('change', function (e) {
    var owner = $(this).val();
    console.log(owner);
    var ticketid = $(this).attr('id').substr(9);
    $($(this) + " option[value=" + owner + "]").attr("selected", "selected"); //Update: this has been removed
});

但所选属性仍未在元素中更新。

有任何线索如何做到这一点?我需要过滤工作,它正在查看所选择的属性。是否无法对select元素进行此类更新?


更新

好的,根据下面的评论和答案,我知道有更好的方法可以做我上面做的事情。所以不要使用$(this).find(“:selected”)。val();我现在使用$(this).val();.另外,我确实删除了最后一行,因为我知道不应该尝试设置所选属性。

而且,我现在明白我遇到实际问题的代码是过滤功能。这是DataTables所以它是一个插件,但这是重要的部分:

aData [i]是实际的表格单元格。因此,它只是文本,但在这种情况下,它是我的select元素的文本。我认为下面是正确的方向,但仍然无法正常工作(检查console.log-rows旁边的评论):

function( oSettings, aData, iDataIndex ) {

                var ret = true;    

                    //Loop through all input fields i tfoot that has class 'sl_filter' attached                                              
                   $('tfoot .sl_filter').each(function(i, obj){

                       //$(this) can be used. Get the index of this colum.
                       var i = $("tfoot input").index($(this));                           

                       //Create regexp to math
                       var r = new RegExp($(this).val(), "i");

                       //Get the selected option from the column
                        console.log($(aData[i]).attr('id')); //Properly prints the ID
                        console.log($(aData[i] + " option:selected").text()); //Prints all options, not only the selected on
                        console.log($(aData[i] + " option:selected").val()); //Prints the value of the id that was selected when data was loaded, even if a new option has been chosen
                        console.log($(aData[i]).val()); //Prints the value of the id that was selected when data was loaded, even if a new option has been chosen

                        var str = $(aData[i] + " option:selected").text();                          

                       /*Test to see if there is a match or if the input value is the default 
                         (the initial value of input before it has any fokus/text) */                           
                       if(r.test(str) || $(this).val()=="Search"){
                           //Return true only exits this function
                           return true;
                       }else{

                           /*Return false returns both function an .each. Retain 'false' in a variable scoped
                             to be reached outside the .each */                                
                           ret = false;
                           return false;
                       }
                   });
                   //Return true or false
                    return ret;                        
                }

这是我需要掌握的所选元素的文本。这是应该过滤的内容。我怎么能这样做?


更新

为了缩小范围,我创造了一个必要的jsfiddle。这是关于如何从所选选项中提取文本的全部内容:jsfiddle

aData [i] =表格单元格。在jsfiddle中,我使用“sel”作为单元格内容的变量。 sel的文本复制为aData [i]。

1 个答案:

答案 0 :(得分:1)

无需更改<option>属性 - 它应该包含从服务器下载的元素的原始状态。

您的过滤器应检查所选选项的selected 属性,例如:

.filter(function() {
    return this.selected; // check the boolean property
})

这也是:selected伪选择器的工作原理 - 它检查属性的当前值,而不是属性

请注意,在change元素的<select>处理程序中,您只需使用this.value即可获取当前选定的值。

$('select').on('change', function() {
    // current value
    var value = this.value;   

    // text of the currently selected option.
    var text = this.options[this.selectedIndex].text;
}