jQuery モバイルと Phonegap を使用してテスト アプリを作成しています。次のページがあります。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile: Theme Download</title>
<script src="cordova-2.5.0.js"></script>
<link rel="stylesheet" href="Longmont.min.css" />
<link rel="stylesheet" href="jquery.mobile.structure-1.3.0.css">
<script src="jquery.js"></script>
<script src="jquery.mobile.js"></script>
<script>
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
setTimeout(function() {
navigator.splashscreen.hide();
}, 500);
}
</script>
<script>
$(document).ready(function() {
$.getJSON('http://localhost/api.php', {'id':3}, function(data) {
var items = [];
$.each(data, function(key, val) {
items.push('<div data-role="collapsible"><h1>' + val + '</h1></div>');
});
$('<div/>', {
data-role: 'collapsible-set',
html: items.join('')
}).appendTo('#page');
});
});
</script>
</head>
<body>
<div data-role="page" id="page">
</div>
</body>
</html>
data-role
に設定して、項目配列をdivに入れようとしていcollapsible-content
ます。そのため、作成時に属性を編集します ( で$('<div/>', {
)。ただし、この属性はハイフンでつながれており、シミュレーターでこのコードを試すと、空白のページが表示されます。
jQueryでハイフン付きの属性を表す適切な方法は何ですか?