在下面的 Firebug 控制台错误中更新错误。谢谢,Jasper
因为我没有想到。my.url.com
是我的更改,但它是通过 SSLVPN 引用某些内容的正确地址。
Security error https://my.url.com/mobile/1.1.0/,DanaInfo=code.jquery.com,CT=js+jquery.mobile-1.1.0.js Line 3903
该位置的代码在jquery.mobile-1.1.0.js
init: function() {
$win.bind( "hashchange", self.onHashChange );
// Handle popstate events the occur through history changes
$win.bind( "popstate", self.onPopState );
// if there's no hash, we need to replacestate for returning to home
if ( DanaGetHash(location) === "" ) {
history.replaceState( self.state(), document.title, DanaGetHref(location) );
}
}
看起来是由 SSLVPN 添加的DanaGetHash
。DanaGetHref
原来,我使用 jQuery Mobile 创建了一个移动页面,我遇到了一个问题,当从我们网络中的非 SSLVPN 计算机访问时,它工作得非常好,但是当通过我们的 SSLVPN 访问它时,页面被严重破坏。
在 IE8 和 IE9 中,首页显示,但通过 a 链接的后续页面都listview
不会尝试显示。单击链接会显示等待的微调器,但不会显示页面。
在 Chrome 和 Firefox 中,首页是空白的。
我尝试使用 jQuery 的 CDN 以及相对目录中的本地副本。
- 我们的 SSLVPN 是瞻博网络
- jQuery 1.7.2非最小化
- jQuery Mobile 1.1.0非最小化
随时询问您可能需要的任何详细信息,我们将不胜感激。