jquery的jsonp

 1 <body>
 2    <button id="btn">点击</button>
 3 <script src="js/jquery.js"></script>
 4 <script>
 5     $(function () {
 6        $('#btn').click(function () {
 7            $.ajax({
 8                type: "get",
 9                url: "http://localhost:3000/",
10                dataType: 'jsonp',
11                jsonp: 'callback',//键
12                jsonpCallback: 'acb',//值
13                success: function(data){
14                    console.log(data);
15                }
16            });
17        });
18     });
19 </script>
20 </body>

 

上一篇:前后端数据交互的方式有哪些?


下一篇:前后端的数据交互有哪些