Blackberry BrowserField问题 -

时间:2012-03-14 12:52:29

标签: html html5 blackberry browserfield

我使用'net.rim.device.api.browser.field2.BrowserField'来加载带有2个脚本的html页面。

  1. 脚本1(Jquery)
  2. 脚本2(Jquery mobile)
  3. 第二个脚本加载两次。就像脚本没有加载一样。根据其在html文件中的位置的时间。

    例如:第5位脚本文件将分别加载5次。

    提前致谢。

1 个答案:

答案 0 :(得分:0)

我一直在努力重现,但我失败了。考虑一下这个简单的BB应用程序:

package mypackage;

import net.rim.device.api.browser.field2.BrowserField;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.container.MainScreen;

public class MyApp extends UiApplication
{
    final class MyScreen extends MainScreen
    {
        protected BrowserField browser;
        protected static final String URL = "http://www.craigmj.com/bbtest/index.html";

        public MyScreen()
        {        
            setTitle(URL);          
            browser = new BrowserField();
            add(browser);
            browser.requestContent(URL);
        }
    }

    public static void main(String[] args)
    {
        MyApp theApp = new MyApp();       
        theApp.enterEventDispatcher();
    }

    public MyApp()
    {        
        pushScreen(new MyScreen());
    }    
}

现在加载的 index.html 如下所示:

<html>
<head>
    <script language="javascript" src="js1.js"></script>
    <script language="javascript" src="js2.js"></script>
    <script language="javascript" src="js2.js"></script>
    <script language="javascript" src="js3.js"></script>
    <script language="javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script language="javascript">
function loadFn() {
    res = "";
    for (var i=1; i<4; i++) {
        res += "js" + i + " = " + getCount("js"+i) + ", ";
    }
    document.getElementById("val").value = res;
}
    </script>
</head>
<body onLoad="loadFn();"><h1>Loading...</h1>
    <input type="text" id="val" name="val" size="30"/>
</body></html>

js1.js 是:

function jsCount(jsFile) {
    if ("undefined"==typeof window[jsFile]) {
        window[jsFile] = 0;
    }
    window[jsFile] = window[jsFile] + 1;
}

function getCount(jsFile) {
    return window[jsFile];
}

jsCount("js1");

js2.js js3.js 是:

jsCount("js2");

jsCount("js3");

(您可以在http://www.craigmj.com/bbtest/ ...)

找到它们

我在9700模拟器和我的9900设备上得到了我期望的结果。

js1 = 1, js2 = 2, js3 = 1,

它不适用于Blackberry 5操作系统,但这似乎是因为BB5上的浏览器不支持script标签。

我们能否清楚地了解这个错误的确切位置和方式?