gpt4 book ai didi

javascript - 用 jQuery 定义带连字符的属性?

转载 作者:搜寻专家 更新时间:2023-11-01 04:45:37 26 4
gpt4 key购买 nike

我正在使用 jQuery Mobile 和 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 中表示带连字符的属性的正确方法是什么?

最佳答案

包含 - 的对象属性必须用引号引起来。

"data-role": value

同样适用于其他操作符和特殊字符,例如引号、:;、空格等

关于javascript - 用 jQuery 定义带连字符的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15911833/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com