美文网首页
ajax 跨域请求

ajax 跨域请求

作者: Simon_s | 来源:发表于2016-09-16 16:26 被阅读8次
    <!DOCTYPE html>
    <html>
    
        <head>
            <meta charset="UTF-8">
            <title></title>
            <script src="js/jquery-3.1.0.js" type="text/javascript" charset="utf-8"></script>
            <script type="text/javascript">
    
            $.ajax({
                url: 'http://10.0.159.198/news.php?',
                type: 'GET',
    
    dataType: 表示希望服务器返回的数据类型是 "jsonp"这种格式的数据类型,只存在于jquery中
           dataType: 'jsonp',
    
    /jsonp 表示传递给服务器时回调函数名字值得属性名;
                jsonp: 'callbackFun',
    
    data : 传递参数以及回调函数。回调函数的属性名要和jsonp中的一致,回调函数值用 ? 表示
                data: 'callbackFun=?',
    
                success: function(data) {
                    alert(data)
                }
    
            })
        </script>
    </head>
    
    <body>
    </body>
    

    </html>

    相关文章

      网友评论

          本文标题:ajax 跨域请求

          本文链接:https://www.haomeiwen.com/subject/eoliettx.html