jQuery Mobile - Swipe - Access-Control-Allow-Origin不允许使用null

时间:2012-04-02 05:23:32

标签: javascript jquery-mobile cordova xmlhttprequest

好吧,在我被问到一个经常被问到的问题之前,我被埋在繁文缛节的大海中,请听我说。我正在使用Phonegap开发一个移动Web应用程序和jQuery,用于在不同页面之间滑动。通过不同的页面,我的意思是不同的HTML文件,而不是一个html文件中的div。为了便于说明,让我们从应用程序中获得两个html文件。

  1. 的index.html
  2. 的test.html
  3. 假设控件在test.html中,我执行以下操作

    <!DOCTYPE html> 
    <html> 
        <head>     
            <title>Test</title>     
            <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />    
            <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script>    
            <script type="text/javascript" src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>        
            <script>    
            $(function(){        
              $("#home").bind('swipeleft',function(event, ui){
                              $.mobile.changePage("../index.html", "slide");
                              });       
              });
            </script>
    </head> 
    <body> 
        <div data-role="page" id="home">    
            <div data-role="header">        
                <h1>Main Page</h1>    
            </div>
            <div data-role="content">            
                <p>Slide finger left</p>
            </div>
        </div>
    </body>
    </html>
    

    我阅读了讨论here,并尝试添加“&amp; callback =?”到index.html的末尾。这删除了错误“Access-Control-Allow-Origin不允许使用Origin null”,但它支持了一个新的“未找到资源”。在基于Webkit的浏览器(Mobile Safari,Chrome)中获得了以下错误。我在Firefox中运行该文件,并在屏幕上显示一个简单的“错误加载页面”警报。

    请帮我解决这个问题。一百万提前感谢!

0 个答案:

没有答案