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

2024年11月23日 01:34
有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: {} , 具体问题要调试了才知道