Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 13 years ago.
对于在 function() 上运行的每个代码,Ovi 浏览器都会将其转发到服务器进行解释。因此,请确保执行最少的 function() 调用。如果你必须这样做,请尝试使用mwl.timer()来添加一个不错的加载效果。
function()
mwl.timer()
例如:
在 index.html 中:
index.html
<div onclick="loadNews()">load news</div>
在 code.js 中:
code.js
function loadNews() { mwl.addClass('#navigation', 'hide'); mwl.addClass('#container', 'hide'); mwl.removeClass('#loader', 'hide'); //Ajax call here. }
您可以将其优化为:
<div onclick="mwl.addClass('#navigation', 'hide');mwl.addClass('#container', 'hide');mwl.removeClass('#loader', 'hide');mwl.timer('loadNewsTimer', 10, 1, 'loadNews()')">load news</div>
在 code 中.js:
code 中.js
function loadNews() { //Ajax call here. }
For every code that is run on function(), the Ovi browser will forward it to server to interpret it. So, make sure you do a minimal function() call. If you have to do it, try to use mwl.timer() to add a nice loading effect.
For example:
In index.html:
In code.js:
You can optimize it to:
添加内联 JavaScript 代码时,您应该将代码括在 " (双引号)中。它在模拟器上运行,但在设备上会失败。
"
<div id='runner' onclick="mwl.addClass('#header', 'hide');mwl.removeClass('#container', 'hide');">command</a>
When adding inline JavaScript code, you should wrap your code in " (double-quote). It runs on the emulator, but will fail on the device.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
对于在
function()
上运行的每个代码,Ovi 浏览器都会将其转发到服务器进行解释。因此,请确保执行最少的 function() 调用。如果你必须这样做,请尝试使用mwl.timer()
来添加一个不错的加载效果。例如:
在
index.html
中:在
code.js
中:您可以将其优化为:
在
index.html
中:在
code 中.js
:For every code that is run on
function()
, the Ovi browser will forward it to server to interpret it. So, make sure you do a minimal function() call. If you have to do it, try to usemwl.timer()
to add a nice loading effect.For example:
In
index.html
:In
code.js
:You can optimize it to:
In
index.html
:In
code.js
:添加内联 JavaScript 代码时,您应该将代码括在
"
(双引号)中。它在模拟器上运行,但在设备上会失败。例如:
When adding inline JavaScript code, you should wrap your code in
"
(double-quote). It runs on the emulator, but will fail on the device.For example: