2月20日彙總:
元素的屬性操作:1.$(function());
2.$('#box').attr() 新增多個通過定義物件新增;$("#box").attr("title",function()) 函式有返回值;
3.$("#box").removeattr('title')刪除指定元素屬性;
4.$(function()) 或$('#box').css(['width','height']) 獲取到的是乙個物件
5.$("#box").css('color',function());
6. $("#pox").click(function()) 來回切換 ;
7.$('#pox').click(function())
8.$("#pox").innerwidth() $("#pox").innerheight() 指的width/height+padding
9.$("#pox").outerwidth() $("#pox").outerheight() width/height+padding+border
10.$("#pox").outerwidth(true) $("#pox").outerheight(true) width/height+padding+border+margin
DOM中常用的操作元素屬性
ele.innertext 獲取元素內所有文字 ele.innerhtml 獲取元素內所有內容 包括一些標籤 ele.src 大多用於修改的路徑 ele.title 大多用於修改的提示資訊 ele.alt 大多用於修改不能載入的提示ele.type 獲取或修改input的型別 ele.value 獲...
dom元素屬性操作(常規屬性操作)
注 原生js操作樣式,只能操作元素的行內樣式 1.操作類名稱 console.log btnlist.classname console.log btnlist.name console.log btnlist.id console.log btnlist.style console.log btn...
DOM方式操作元素屬性
原生js取屬性值getattribute var optionsjson this.getattribute data options 1.獲取 getattribute 名稱 2.設定 setattribute 名稱,值 3.刪除 removeattribute 名稱 用classname選擇元素...