我使用jquery动态创建元素。这是我的代码
function showArticles(res) {
var output = '';
res.articles.forEach(function (item) {
output +=
'<div class="col-12 col-lg-4 item-article" data-name="'+ item.author +'>'+
'<p>' + item.description + '</p>'
+
'</div>'
});
articleWrapper.append(output);
我想访问该data-name属性
var itemArticle = $('.item-article').attr("data-type");
console.log(itemArticle)
退货undefined。
如何访问data-name属性,为什么会发生这种情况?
GCT1015
子衿沉夜
江户川乱折腾
相关分类