用于重定向的元刷新在黑莓中不起作用
我在此处问了这个问题,但没有得到到目前为止回复。我希望也可以在这里发布。
对于页面重定向,在移动网站开发中,我使用它是
<meta http-equiv="refresh" content="0;URL=/pagetwo.jsp"/>
因为它需要在 Javascript 关闭时工作。
但是,我发现它只能在 BlackBerry (BB) 模拟器中工作,而不能在真正的 BB 中工作(我尝试使用 BB 8250 和 9700)。
请问谁能帮帮我,可能是什么原因。
谢谢。
I asked this question here but don't get reply so far. I hope posting it too here is ok.
For page redirection, in a mobile site development, I am using
<meta http-equiv="refresh" content="0;URL=/pagetwo.jsp"/>
because it is required to work when Javascript is off.
However, I find it working only in BlackBerry (BB) simulator, not in real BB (I tried with BB 8250 and 9700).
Could anyone help me please, what could be the reason.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于多种原因(禁用后退按钮等),使用元来刷新浏览器并不是一个好主意,并且可能发生的情况是您的其他黑莓手机存在可访问性问题,它不会让页面自行刷新。如果可以,请尝试在服务器端 HTTP 响应中设置它
根据 BlackBerry Browser 文档文章 “HTML 元素:” 元刷新在软件版本 3.7 或更高版本之前不可用。
Using meta for refreshing the browser isn't a good idea for a number of reasons (disables back-button, etc) and what's probably happening is your other blackberry has an accessibility issue where it won't let pages refresh themselves. Try setting it in the server-side HTTP response if you can
According to BlackBerry Browser documentation article "HTML element: <meta>" meta refresh isn't available until software version 3.7 or later.