码迷,mamicode.com
首页 > Web开发 > 详细

json跨域

时间:2015-06-20 19:37:55      阅读:133      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!