首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在BB5.0上运行的HTML脚本可以正常工作,但不能在BB7.0操作系统下运行?

在BB5.0上运行的HTML脚本可以正常工作,但不能在BB7.0操作系统下运行?
EN

Stack Overflow用户
提问于 2011-12-19 19:30:28
回答 1查看 175关注 0票数 1

谁能告诉我为什么当我在BB7.0操作系统上运行这个脚本时出现延迟,在BB5.0上它运行得很好

我的代码是

代码语言:javascript
复制
BrowserField myBrowserField;
myBrowserField = new BrowserField();
add(myBrowserField);
String content ="<html><head><style type='text/css'> p{color: blue;line-height:200%;}</style></head><body>"+
    "<p>Inspired by one of the most opulent among gems,Amber is our multi-tier Loyalty Programme</p>"+
    "<p align=justify>The Amber stone is associated with the fire element,Which is known to draw people,with itswarmth and radiance,while infusing a unique sense of loyalty into whatever it comes in contact with </p>"+
    "<p align=justify>This Programme is an example of our steadFast</p>"
    ;
myBrowserField.displayContent(content,"");//"http://localhost"
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2012-01-20 05:48:41

尝试添加他"“似乎你忘记了这一点:)

代码语言:javascript
复制
BrowserField myBrowserField;
myBrowserField = new BrowserField();
add(myBrowserField);
String content ="<html><head><style type='text/css'> p{color: blue;line-height:200%;}</style></head><body>"+
    "<p>Inspired by one of the most opulent among gems,Amber is our multi-tier Loyalty Programme</p>"+
    "<p align=justify>The Amber stone is associated with the fire element,Which is known to draw people,with itswarmth and radiance,while infusing a unique sense of loyalty into whatever it comes in contact with </p>"+
    "<p align=justify>This Programme is an example of our steadFast</p>"+
    "</body></html>"
    ;
myBrowserField.displayContent(content,"");//"http://localhost"

我用BB OS7试了试我的9790,没有出任何问题,而且工作得很好。对于RAM之外的延迟,也许你正在安装很多应用程序…

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/8560653

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档