我使用jQuery Mobile 1.3.2在Worklight 6.0中創建了一個簡單的應用程序。IBM Worklight 6.0應用程序 - 使用jQuery Mobile的Windows Phone 8中的頁面呈現問題
這是一個帶頁眉,內容和頁腳的單頁面應用程序。包括必要的jquery移動javascript和css文件。
下面給出的是應用程序中的html文件。
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8"/>
<title>DemoApp</title/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0"/>
<link rel="shortcut icon" href="images/favicon.png"/>
<link rel="apple-touch-icon" href="images/apple-touch-icon.png"/>
<link rel="stylesheet" href="css/DemoApp.css"/>
<link rel="stylesheet" href="css/jquery.mobile-1.3.2.min.css"/>
<script>window.$ = window.jQuery = WLJQ;</script>
</head>
<body id="content" style="display: none;">
<div data-role="page">
<div data-role="header"><h1>Header</h1></div>
<div data-role="content">Content</div>
<div data-role="footer" data-position="fixed"><h1>Footer</h1></div>
</div>
<script src="js/initOptions.js"></script>
<script src="js/DemoApp.js"></script>
<script src="js/messages.js"></script>
<script src="js/jquery.mobile-1.3.2.min.js"></script>
</body>
</html>
我已經創建了Windows Phone 8環境並構建了worklight項目。在Windows Phone的Microsoft Visual Studio Express 2012的幫助下,應用程序在Windows Phone模擬器中啓動。
當我滾動屏幕我收到以下響應。
請提出一個方法來解決這個問題。
DemoApp.css一個,簡稱,地址,文章,放在一邊,音頻,B,塊引用,身體,帆布,標題,引用代碼,DD,德爾,詳細信息dfn對話框div div dl dt dt em fieldset ffcaption圖形footer form h1 h2 h3 h4 h5 h6 header hgroup html iframe img ins kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th, thead,time,tr,ul,var,video {0} {0} {0}} {0} 填充:0; } #內容{ height:460px; margin:0 auto; width:320px; }我試着刪除所有默認的CSS,但我仍然遇到同樣的問題。 – kingemerald