jQuery - 将多个元素加载到多个位置

时间:2015-02-08 21:19:48

标签: jquery

我目前正在将单个页面中的几位信息加载到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

谢谢!

0 个答案:

没有答案