jquery 插入html


簡單紀錄一下使用Jquery插入html的幾個方法。

html

最常用的就是這個,將指定的位置html替換掉。

$('#id').html('替換的html')

append

插入在指定位置內部的後面

$('#id').append('加入在最尾端')

prepend

插入在指定位置內部的前面

$('#id').prepend('加入在最前端')

after

插入在指定位置後方

$('#id').after('加入在後方')

before

插入在指定位置前方

$('#id').before('加入在前方')

參考用位置

[before] <div id="id"> [prepend] 原本內容 [append] </div> [after]
Tags : javascript jquery