首页 > 代码库 > 【javascript】jquery jsonp跨越请求
【javascript】jquery jsonp跨越请求
1 <html> 2 <head> 3 <meta charset="utf-8"> 4 <title></title> 5 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"> 6 </script> 7 <script type="text/javascript"> 8 $(document).ready(function() { 9 $("input[type=button]").click(function() {10 //begin11 $.ajax({12 url: ‘http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=‘+$("#keywords").val(),13 type: ‘get‘,14 dataType: ‘jsonp‘,15 jsonp:"callback",16 jsonpCallback:"aa",17 })18 // end19 20 });21 22 });23 function aa(data){24 alert(data.results[‘url‘])25 26 }27 </script>28 </head>29 <body>30 <input type="text" name=‘keywords‘ id="keywords"/><br/>31 <input type="button" value="查询"/>32 <p id="content"></p>33 </body>34 </html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。