第50篇 jQuery位置 內容 大小 屬性 文件的操作
阿新 • • 發佈:2018-11-11
1. 位置
1. offset()
2. position()
2. 大小
1. 內容(content)>內填充(padding)>邊框(border)>外邊距(margin)
2. height/width
3. innerHeight/innerWidth
4. outerHeight/outerWidth
3. 內容
1. text()
2. html()
3. val()
4. 屬性
1. 想要獲取返回文字類的屬性用attr(標籤上寫的屬性用attr)
2. 想要獲取返回布林值的屬性用prop(DOM物件有的屬性用prop)
5. 文件操作
1. 內部新增
1. 往前追加
1. prepend()
2. prependTo()
2. 往後追加
1. append()
2. appendTo()
2. 外部新增
1. 往前加
1. before
2. insertBefore
2. 往後加
1. after
2. insertAfter
3. 替換
1. replaceWith()
2. replaceAll()
4. remove()
5. empty()
6. clone()
1. true:文件和事件都克隆