jQuery mobile和Dreamweaver无法在移动设备上运行

时间:2014-03-27 21:10:06

标签: jquery html jquery-mobile mobile dreamweaver

作为大学的一项任务我要创建一个网站的移动版本,我们这群人正在创建。我决定通过Dreamweaver使用jQuery mobile。当我在我的笔记本电脑或同事笔记本电脑上预览html文件时,该网站看起来很好,当我点击Dreamweaver中显示该网站的实时版本的“实时”时,它看起来如何。

然而,当我在手机上打开它时(我通过电子邮件将HTML文件发送给自己并在我的iPhone上的Safari中打开),它显示为一个大页面,带有简单的Times New Roman文本。我将包括以下代码:

<!DOCTYPE html> 
<html>
<head>
<meta charset="utf-8">
<title>The Big Event 2015 Quebec02</title>
<link href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" rel="stylesheet" type="text/css"/>
<script src="http://code.jquery.com/jquery-1.6.4.min.js" type="text/javascript">     </script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js" type="text/javascript"></script>
</head> 
<body> 

<div data-role="page" id="page">
<div data-role="header">
    <h1>Home</h1>
</div>
<div data-role="content">   
    <ul data-role="listview">
        <li><a href="#page2" title="About"><center>About</center></a></li>
        <li><a href="#page3"><center>Events</center></a></li>
        <li><a href="#page4"><center>History</center></a></li>
    </ul>       
</div>
<div data-role="footer">
    <h4>The Big Event 2015 Quebec02<strong>©</strong></h4>
</div>
</div>

<div data-role="page" id="page2">
<div data-role="header">
    <h1>About</h1>
</div>
<div data-role="content">Here the content will be added to the 'about' page.</div>
<div data-role="footer">
    <h4>The Big Event 2015 Quebec02<strong>©</strong></h4>
</div>
</div>

<div data-role="page" id="page3">
<div data-role="header">
    <h1>Events</h1>
</div>
<div data-role="content">Here the information about events will be entered.</div>
<div data-role="footer">
    <h4>The Big Event 2015 Quebec02<strong>©</strong></h4>
</div>
</div>

<div data-role="page" id="page4">
<div data-role="header">
    <h1>History</h1>
</div>
<div data-role="content">History of the big event will be here.</div>
<div data-role="footer">
    <h4>The Big Event 2015 Quebec02<strong>©</strong></h4>
</div>
</div>

</body>
</html>

任何和所有帮助都会被疯狂地欣赏,因为我似乎无法弄清楚我哪里出错了。

0 个答案:

没有答案