我目前正在将单个页面中的几位信息加载到div
($this
)
$this.load( $categoryUrl + ' ' + '.product:nth-child(' + (i + 1)+ ') .productImage, '
+ '.product:nth-child(' + (i + 1)+ ') .productTitle, '
+ '.product:nth-child(' + (i + 1)+ ') .productPrice',
function() {
// Function
});
有没有办法在不进行多次调用的情况下将这些已加载的元素添加到单个容器中?
例如:
.productImage
已添加到#prdImg
.productTitle
已添加到#prdTitle
.productPrice
已添加到#prdPrice
谢谢!