我有3个html页面。我想在全屏模式下用iPod Touch打开这个页面。这3页相互连接。这是一个小例子:
每个.html
页面都包含以下代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Language" content="en" >
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body>
<!--
...
-->
</body>
</html>
我按照on this page here步骤(查看图片(点:iPhone(IOS)))以全屏模式制作“web-app
”。现在我在主屏幕上将index.html
设为“web-app
”。当我按下图标时,我会在全屏模式下看到index.html
。
现在我想按一个按钮并全屏显示下一页,但是在没有全屏模式的情况下,下一页将显示在普通的safari浏览器中。我该如何解决这个问题?