我正在循環瀏覽XML文件中的每個相關標記並執行此代碼。使用jQuery添加另一個div
$('<div class="product_image"></div>').html('<a href="'+url+'"><img src='+urlZoomImage+' /></a>').appendTo('#content');
$('<div class="product_title"></div>').html('<a href="'+url+'">'+title+'</a>').appendTo('#content');
我想圍繞product_image和PRODUCT_TITLE一個叫做product_box喜歡這個div:
<div id="content">
<div class="product_box">
<div class="product_image">My image code</div>
<div class="product_title">My title code</div>
</div>
</div>
只有內容的div是寫在HTML,它必須保持這樣的(我不能寫在那裏的product_box代碼,因爲它是在每次成功的查找中生成的)。我該怎麼做呢?
在此先感謝。
你追加要素'#content'元素,但你有一個div元素與類content'的'!錯字? – undefined
謝謝,這是一個錯字,現在修復了OP。 – Sara44