首页 > Web开发 > 详细

json跨域

时间:2015-06-20 19:36:41      阅读:387      评论:0      收藏:0      [点我收藏+]

很有意思的两种连接 ,效果相同。 不同之处: aehyok({"result":"我是远程js带来的数据"});   

<script type="text/javascript" src="http://www.yourtour.cc/c.js" ></script>  不能放在fucntion  aehyok 上面,否则失效
<html>
    <head>
        <title>index.html</title>
        
        <script type="text/javascript">
            function aehyok(data)
            {
                alert(data.result);
            }
            aehyok({"result":"我是远程js带来的数据"});
        </script>
        <script type="text/javascript" src="http://www.yourtour.cc/c.js" ></script>
    </head>
    <body></body>
</html>

 

 

<html>
    <head>
        <title>index.html</title>
        
        <script type="text/javascript">
            function aehyok(data)
            {
                alert(data.result);
            }
            
        </script>
        <script type="text/javascript" src="http://www.yourtour.cc/c.js" ></script>
    </head>
    <body></body>
</html>
跨域请求数据

作用,可以实现跨域请求数据

json跨域

原文:http://www.cnblogs.com/wesky/p/4590920.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!