0
A
回答
0
你必須在你的代碼的一些錯誤。
你應該嘗試fllowing:
<!DOCTYPE html>
<html>
<head>
<title>Sample Page</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var jResult = [{"status":"ok",
"count":6,
"categories":[{
"id":19,
"slug":"abcd",
"title":"abcd",
"post_count":1
},
{
"id":6,
"slug":"conferences",
"title":"Conf\u00e9rences",
"post_count":33
}] // <--- You had a missing ']'
}];
var buttonHtmlString = "", pageHtmlString = "";
for (i = 0; i < 2; i++) {
// 'jResult' is an array so you should have 'jResult[0].categories[i].title'
// instead of 'jResult.categories[i].title'
buttonHtmlString += '<a href="#' + jResult[0].categories[i].title + '" data-role="button">' + jResult[0].categories[i].title + '</a>';
pageHtmlString += '<div data-role="page" id="' + jResult[0].categories[i].title + '">';
pageHtmlString += '<div data-role="header"><h1>' + jResult[0].categories[i].title + '</h1></div>';
pageHtmlString += '<div data-role="content"><p>' + jResult[0].categories[i].post_count + '</p></div>';
pageHtmlString += '</div>';
}
$("#buttonGroup").append(buttonHtmlString);
$("#buttonGroup a").button();
$("#buttonGroup").controlgroup();
$("#main").after(pageHtmlString);
//return false;
});
</script>
</head>
<body>
<div data-role="page" id="main">
<div data-role="header">
<h1>
Page 1
</h1>
</div><!-- /header -->
<div data-role="content">
<p>I fake loaded content in the <i>$(document).ready()</i> event!</p>
<div data-role="controlgroup" id="buttonGroup"></div>
</div><!-- /content -->
<div data-role="footer">
</div>
</div><!-- /page -->
</body>
</html>
希望這有助於。
相關問題
- 1. Jquery Mobile和JSON
- 2. Mobile jQuery和jSon請求
- 3. jQuery Mobile的/ JSON
- 4. jQuery Mobile JSON解析
- 5. 在rails中使用jquery mobile和json
- 6. JQuery Mobile爲ListView解析JSON
- 7. jQuery Mobile JSON格式化
- 8. 的PhoneGap + jQuery Mobile的+ JSON
- 9. jquery mobile json var locale date
- 10. jquery mobile json過濾器?
- 11. jQuery mobile和jQuery 2
- 12. jQuery Mobile和Normal jQuery
- 13. jQuery Mobile和jQuery.mobile.back();
- 14. JQuery Mobile和PHP
- 15. yii和jquery mobile
- 16. Cordova和Jquery Mobile
- 17. JQuery Mobile和JSONP
- 18. jQuery mobile和Laravel
- 19. BoilerplateJS和Jquery Mobile
- 20. opentbs和jQuery Mobile
- 21. jQuery Mobile和Phonegap
- 22. Phonegap和jquery mobile
- 23. JQuery Mobile和Mediaelements.js?
- 24. jQuery Mobile&JSON - 如何使用JSON響應?
- 25. jQuery Mobile和Google Analytics
- 26. Phonegap,jQuery Mobile和iframe
- 27. Phonegap Jquery Mobile和Xcode
- 28. Strophe,backbonejs和jquery-mobile
- 29. PHP header()和jquery mobile
- 30. jquery mobile和iscroll refresh
請你詳細解釋一下。 – caitriona