1

我有错误

“不推荐使用属性的指定属性。它始终返回 true。return !val || val.specified ? elem.value : elem.text;”

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

1 回答 1

2

该错误看起来与$("#o_productCategory").val(). 可能是这个这个

因为您在$("#o_productCategory")change回调中,所以您可以使用this.value

$.getJSON("URI", { "parent" : this.value }, function (result) {
    //code here
});
于 2013-01-02T08:36:46.827 回答