jQuery Ajax 简单的实现跨域请求
html 代码清单:
<script type="text/javascript" src="http://你的域名/js/jquery-1.4.2.min.js"></script> <script type="text/javascript"> $(function(){ $.ajax( { type:'get', url : 'http://你的域名/test.php?loginuser=lee&loginpass=123456', dataType : 'jsonp', jsonp:"jsoncallback", success : function(data) { alert("用户名:"+ data.user +" 密码:"+ data.pass); }, error : function() { alert('fail'); } } ); }) </script>
服务端 test.php 代码清单:
<?php header('Content-Type:text/html;Charset=utf-8'); $arr = array( "user" => $_GET['loginuser'], "pass" => $_GET['loginpass'], "name" => 'response' ); echo $_GET['jsoncallback'] . "(".json_encode($arr).")";
明月浩空》原创,转载请保留文章出处。
本文链接:https://blog.myhkw.cn/post-140.html
版权声明:若无特殊注明,本文为《正文到此结束
发表吐槽
你肿么看?
已有2条吐槽