假设我有一组 Customer 结构,我需要从中生成 HTML。
目前我做这样的事情:
jQuery.each(customers, function(index, item) {
html =+ "<tr custID='" + item.ID + "'><td>" + item.Name + "</td><td>" + item.City + "</td></tr>";
});
这里的问题是我手动添加了 custID 属性。我相信最酷的方法是使用 jQuery 的 Data 函数。
但是在这种情况下我将如何使用它呢?