jquery问题,ajax不执行success或error函数

2024-11-23 01:34:12
推荐回答(3个)
回答1:

$.ajax(  
    {  
        type:'get',  
        url : url,  
        dataType : 'jsonp',  
        jsonp:"jsoncallback",  
        success  : function(data) {  
            
        },  
        error : function() {  
            
        }  
    }  
);

试试这样的

回答2:

1:引入jq
2:你后台返回的数据是html 还是json格式?
3:URL 路径

回答3:

data: {} , 具体问题要调试了才知道