jquery ajax invalid_state_err dom exception 11 phonegap

时间:2014-07-21 08:59:20

标签: javascript jquery ajax cordova

我是phonegap开发的新手,我收到此错误' invalid_state_err dom异常11当我尝试发出ajax请求并更新dom元素时,init函数在body load中被调用,我试过了执行php页面它没有问题,这是我的代码

function init(){
document.addEventListener("deviceready", onDeviceReady, false);
document.addEventListener("online", onOnline, false);
}
function onDeviceReady() {
// Now safe to use the Cordova API

}
function onOnline(){
loadCategories(5);
}
function loadCategories(id_cat){
$.ajax({

    type : "GET",



    url : 'http://t21copy.info/doc/getCategories.php',

    data : {id_parent:id_cat},

    success : function(data, textStatus) {
    alert('succ '+data);
        $('#catgs').html(data);
    },
    error : function(data,status, error) {
        //alert('d '+data);
        alert(" error "
                + error );

    }
   });
}

1 个答案:

答案 0 :(得分:0)

我忘了允许在manifest.xml中访问互联网

 <uses-permission android:name="android.permission.INTERNET" />