$("#productInfo").find("i").each(function() {
var $this = $(this);
$this.text(productData[$this.attr("id")]);
});
js 遍历并且赋值
最新推荐文章于 2025-05-28 17:21:59 发布
$("#productInfo").find("i").each(function() {
var $this = $(this);
$this.text(productData[$this.attr("id")]);
});