我正在使用字符串连接来构建 HTML 片段,然后将其放入 DOM。我很欣赏将 HTML 混合到 JavaScript 中的不好做法,并且可能有更好的解决方案。但是我正在努力编码的行是:
$('<h1>' + content[0].title + '</h1>').append('body');
所以我想要实现的是创建一个<h1>
,然后将它的文本设置为我存储在内容变量中的对象数组中的第一个对象中的 title 属性的值。然后最终将其附加到<body>
- 任何建议将不胜感激。
(function() {
var content = [
{
title: 'Speak of the devil and he shall appear',
thumbnail: 'images/bane.jpg',
},
{
title: 'Me the joker',
thumbnail: 'images/Joker.jpg',
}
];
$('<h1>' + content[0].title + '</h1>').append('body');
})();