2013-01-02 217 views
1

我有錯誤的jQuery選擇了元素

「屬性指定屬性的提倡使用它總是返回true 回報VAL || val.specified elem.value的錯誤事件的變化:。!?ELEM 。文本;」

$(document).ready(function(){ 
    $("#o_productCategory").change(function(e){ 
     $.getJSON("URI", ({"parent" : $("#o_productCategory").val()}),function(result) { 
      //code here 
     }); 
    }); 
}); 

回答

2

錯誤看起來相關$("#o_productCategory").val()。可能是thisthis

由於您位於$("#o_productCategory")change回調中,因此可以使用this.value代替。

$.getJSON("URI", { "parent" : this.value }, function (result) { 
    //code here 
}); 
+0

謝謝你......它的作品! – akauts