0

アプリケーションのこのスクリプトを修正するのを手伝ってください。チェーン選択を機能させようとしています。スクリプトは基本的に、ドロップダウンから選択されたドロップダウン値をチェックし、データベースで値を検索します

JS:

<Script type="text/javascript">
    $("#propinsi_id").change(function () {
        var propinsi_id = {
            propinsi_id: $("#propinsi_id").val()
        };
        $.Ajax({
            type: "POST",
            url: "<?php echo SITE_URL('Repair/select_fault')?>",
            Data: propinsi_id,
            success: function (msg) {
                $('#city').html(msg);
            }
        });
    });
</Script>

エラー:

I caught this error 

Uncaught TypeError: Object
function (selector, context) {
    //The jQuery object is actually just the init constructor 'enhanced'
    return new jQuery.fn.init(selector, context, rootjQuery);
}
has no method 'Ajax'
4

2 に答える 2

0

これ

$.Ajax({

小文字にする必要があります

$.ajax({

私もに変更Data:しますdata:

于 2013-09-02T09:25:05.657 に答える
0

これを試して

<script type = "text/javascript" >
  $("#propinsi_id").change(function(){
                var  propinsi_id = {propinsi_id:$("#propinsi_id").val()};
                $.ajax({ //<---here
                        type: "POST" ,
                        url: "<?php echo SITE_URL('Repair/select_fault')?>" ,
                        data:propinsi_id, //<---here
                        success:function(msg) {
                            $('#city').html(msg);
                        }
                    });
        });

 </script>
于 2013-09-02T09:25:32.760 に答える