1

有人可以帮帮我吗,我正在尝试显示这些 id 所链接的值。这是我的 html 的一部分

<body>
<div id='what'></div>
<div id='when'></div>
<div id='where'></div>
</div>
</body>

这是我的 j 查询

var details = {what:'fun and games',
               when:'Thursday',
               where:'Jeffs House'}

所以基本上我希望显示这里的值^^。谢谢

4

1 回答 1

1

好吧,您可以遍历该对象的属性并设置相应的值:

var performance = {
    what: 'fun and games',
    when: 'Thursday',
    where: 'Jeffs House'
};

for (var key in performance) {
    if (performance.hasOwnProperty(key)) {
        $('#' + key).html(performance[key]);
    }
}

这是一个live demo.

于 2013-02-17T16:54:08.173 回答