<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>历史上的今天</title>
        <script src="jquery-1.8.3.min.js"></script>
    </head>
    <body>
    <script type="text/javascript">
        $.ajax({
            type: 'GET',
            crossOrigin: true,
            dataType: "jsonp",
            url: 'https://zh.wikipedia.org/wiki/6%E6%9C%884%E6%97%A5',
            success: function(data) {
                console.log(data);
            }
    });
    </script>
        
    </body>
</html>

 但是success函数不执行。。。

 

待续。。。

 

参考:http://blog.csdn.net/erica_1230/article/details/43983801

相关文章:

  • 2022-12-23
  • 2021-11-06
  • 2022-12-23
  • 2022-01-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-05
  • 2021-06-05
  • 2021-06-14
  • 2021-06-18
  • 2021-09-18
  • 2022-12-23
相关资源
相似解决方案