js 文件處理(小結)

2022-07-17 04:18:07 字數 748 閱讀 2006

1.jquery

prepend 向每個匹配的元素內部前置內容。

$("select").prepend("html")==>向每個匹配的元素內部前置內容。(新增到前面第一行)

即: $(".i_txt").prepend("");

prependto 把所有匹配的元素前置到另乙個、指定的元素元素集合中。

$("html").prependto("select")==>把html插入到select裡面

即:$("").prependto(".i_txt");

//jquery 與 js 都有insertbefore但是表達的意思不用

jquery的insertbefore同等與before

jquerty insertbefore() 方法在被選元素之前插入 html 標記或已有的元素。

2.js

insertbefore() 方法在您指定的已有子節點之前插入新的子節點。

node.insertbefore(newnode,existingnode)

newnode==需要插入的節點物件

existingnode===在其之前插入新節點的子節點。如果未規定,則 insertbefore 方法會在結尾插入 newnode

var list=document.getelementbyid("mylist")

list.insertbefore(newitem,list.childnodes[0]);

}

js處理字串的用法小結

序號 方法作用 用法引數說明 1length獲取字串的長度 str.length 2charat根據下表獲取指定位置的字串 str.charat n n 指定位置 3indexof返回指定字串在字串中指定位置開始後首次出現的位置,找到則返回對應的位置,未找到返回 1 str.indexof m,n ...

js學習小結

共7種資料型別 boolean,number,string,obejct,null,undefined,symbok.boolean的包裝器boolean new boolean value 對於value為 0,0,null,false,nan,undefined,的初始值為false 其它的為t...

文件處理 替換

將所有匹配的元素替換成指定的html或dom元素。content 用於將匹配元素替換掉的內容。如果這裡傳遞乙個函式進來的話,函式返回值必須是html字串。fn 返回thml字串,用來替換的內容。描述 把所有的段落標記替換成加粗的標記。html hello cruel world jquery p r...