在jquery中添加元素的方法:1.新建html項目,引入jquery;2.在項目中創建測試標簽;3.使用append()、prepend()、after()、before()方法添加元素;
具體步驟如下:
1.首先,在新建一個html項目,在項目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項目中創建一個html標簽,用于測試;
<p>測試文本</p>
3.最后,測試標簽創建好后,使用append()、prepend()、after()、before()方法即可添加元素;
1)使用append()方法在標簽結尾處添加元素
$("p").append("
hello world!"); //返回 "測試文本 hello world!"
2)使用prepend()方法在標簽開頭處添加元素
$("p").prepend("
hello world!"); //返回 "hello world! 測試文本"
3)使用after()方法在標簽后添加元素
$("p").after("
hello world!");
輸出結果為:
測試文本
hello world!
4)使用before()方法在標簽前添加元素
$("p").before("
hello world!");
輸出結果為:
hello world!
測試文本