我已經將您的代碼片段更改爲以下內容,並且適用於我的任何重複。 注意帶引號的data-dojo-props的輕微更改。
<div
id="info"
data-dojo-type="dojox.mobile.Heading"
data-dojo-props="label:'User Information'"
style = "background-color: silver; font-size: 20px;">
</div>
我已經創建了一個道場新的工作燈項目和應用程序(使用工作燈混合應用程序嚮導),並補充修改後的代碼片段。我只看到1個標題。
我的index.html
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>dojotest</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="stylesheet" href="css/main.css">
<script>window.$ = window.jQuery = WLJQ;</script>
<script type="text/javascript" src="dojox/mobile/deviceTheme.js"></script>
<script type="text/javascript" data-dojo-config="isDebug: false, async: true, parseOnLoad: true, mblHideAddressBar: false" src="dojo/dojo.js"></script>
</head>
<body style="display: none;">
<div data-dojo-type="dojox.mobile.ScrollableView" id="view0" data-dojo-props="selected:true">
<div
id="info"
data-dojo-type="dojox.mobile.Heading"
data-dojo-props="label:'User Information'"
style = "background-color: silver; font-size: 20px;">
</div>
</div>
<script src="js/initOptions.js"></script>
<script src="js/main.js"></script>
<script src="js/messages.js"></script>
</body>
</html>
可以將您提供一些代碼? –