insertAdjacentHTML方法示例

2021-08-30 09:57:22 字數 534 閱讀 4954

新增html內容與文字內容以前用的是innerhtml與innertext方法,最近發現還有insertadjacenthtml和insertadjacenttext方法,這兩個方法更靈活,可以在指定的地方插入html內容和文字內容。

insertadjacenthtml方法:在指定的地方插入html標籤語句

原型:insertadajcenthtml(swhere,stext)

引數:swhere: 指定插入html標籤語句的地方,有四種值可用:

1. beforebegin: 插入到標籤開始前

2. afterbegin:插入到標籤開始標記之後

3. beforeend:插入到標籤結束標記前

4. afterend:插入到標籤結束標記後

stext:要插入的內容

原來的內容

insertAdjacentHTML動態插入行

新增html內容與文字內容以前用的是innerhtml與innertext方法,最近發現還有insertadjacenthtml和insertadjacenttext方法,這兩個方法更靈活,可以在指定的地方插入html內容和文字內容。insertadjacenthtml方法 在指定的地方插入html...

insertAdjacentHTML動態插入行

新增html內容與文字內容以前用的是innerhtml與innertext方法,最近發現還有insertadjacenthtml和 insertadjacenttext方法,這兩個方法更靈活,可以在指定的地方插入html內容和文字內容。insertadjacenthtml方法 在指定的地方插入htm...

Python Random函式常用方法及示例

這篇文章主要介紹了python random函式 獲取隨機數 常用方法和使用例子,需要的朋友可以參考下 random.random random.random 用於生成乙個0到1的隨機符點數 0 n 1.0 random.uniform random.uniform a,b 用於生成乙個指定範圍內的...