我对 jQuery Mobile 有疑问。我正在为 Android 和 iPhone 构建一个浏览器页面。我在两个不同的 HTML 文件中创建了这两个页面。但我想要一个文件,我想为 android 页面分配 android 浏览器,为 iphone 页面分配 iphone 浏览器并相应地加载它们。
下面是代码
安卓
!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Android</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<link rel="stylesheet" href="my.css" />
<style>
/* App custom styles */
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js">
</script>
</head>
<body>
<div data-role="page" data-theme="a" id="page1">
<div data-theme="b" data-role="header">
</div>
<div data-role="content">
<div>
<h1 class="text-align-center">
<b>
Apple
</b>
</h1>
</div>
<div>
</div>
</div>
<a data-role="button" data-transition="none" data-theme="b" href="http:m.apple.com">
Go
</a>
</div>
</div>
<script>
//App custom javascript
</script>
</body>
对于 iPhone,这里是
<!DOCTYPE html>
<html>
<head>
<title>Apple</title>
<!-- the three things that jQuery Mobile needs to work -->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<link rel="stylesheet" href="iphone.css" />
<style>
/* App custom styles */
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js">
</script>
<script type="text/javascript" src="mobiledetect.js"></script>
<!-- This is the first page -->
<section id="firstpage" data-transition="flip" data-theme="b" data-role="dialog">
<div data-role="content">
<div>
<h1 class="text-align-center">
<b>
Apple
</b>
</h1>
</div>
<a data-role="button" data-transition="flip" data-theme="b" href="http://m.apple.com">
Go
</a>
</div>
</section>