嘿嘿,
希望这是一个简单的问题,有一个简单的答案......有没有办法用 iframe 或类似的东西创建一个 html 文档,它会加载一个网页,但允许你在页面之间来回滑动?就像是
<html>
<head>
<meta charset="utf-8"/>
<title>Blent</title>
<link rel="stylesheet" href="jquery.mobile.pagination.css" />
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js"> </script>
<script src="jquery.mobile.pagination.js"></script>
<!-- Prevent scaling -->
<meta name="viewport" content="user-scalable=no, width=device-width" />
<!-- Eliminate url and button bars if added to home screen -->
<meta name="apple-mobile-web-app-capable" content="yes" />
</head>
<body>
<iframe id=”the-frame” src=”http://google.com”></iframe>
</body>
</html>
所以我有一个带有 google 的 iFrame,如果我滑动,它会加载说 Amazon.com,然后如果我向后滑动,它会加载 Google。有什么办法吗?