私人领地

json跨域

很有意思的两种连接 ,效果相同。 不同之处: 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>
跨域请求数据

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

posted @ 2015-06-20 19:17  狂奔的蜗牛Snails  阅读(191)  评论(0编辑  收藏  举报