經常用jq來DOM添加html代碼 就總結了jq裡面最常用的動態添加html代碼的方法 append在元素內部的尾部加上元素 prepend在元素內部的前部加上元素 after在元素外部的尾部加上元素 before在元素外部的頭部加上元素 html用當前內容替換掉原內容 $(" id1")inser ...
經常用jq來DOM添加html代碼 就總結了jq裡面最常用的動態添加html代碼的方法
append在元素內部的尾部加上元素
prepend在元素內部的前部加上元素
after在元素外部的尾部加上元素
before在元素外部的頭部加上元素
html用當前內容替換掉原內容
$("#id1")insertBefore("#id2");把id1剪切掉 放入id2元素外部的頭部
$("#id1")insertAfter("#id2");把id1剪切掉 放入id2元素外部的尾部