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