当前位置: 首页 > 工具软件 > jQuery-JSONP > 使用案例 >

549day(jquery-jsonp.html)

能可人
2023-12-01

《2019年4月6日》【连续 549天】

标题:jquery-jsonp.html;
内容:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <script src="jquery.js"></script>
  <script>

    $.ajax({
      url: 'http://localhost/jsonp/server.php',
      dataType: 'jsonp',
      success: function (res) {
        console.log(res)
      }
    })

  </script>
</body>
</html>

 

 类似资料: