簡單舉例說明:
<p style="margin-top: 5px;">//html<p class="answer"></p><br/></p>
描述:
功能:下滑載入更多,透過ajax請求到資料把組裝好的html範本插入到list中。
實作:透過
$('.list').append('_html');
方法把一個html模板插入到.list中,但是,觸發載入更多多次後發現append()方法執行越來越慢。
解決: 經排查,發現是要插入的_html模板中也存在.list類,所以,當多次插入後執行$('.list').append( '_html');
時,$('.list')
的時間會越來越長。
以上是Jquery append方法使用上的問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!