var title = $("em").attr("title");
var title = $("em").attr("title","****");
$('#greatphoto').attr(); //和css 的屬性設定類似
獲取匹配的元素集合中的第乙個元素的屬性的值 或 設定每乙個匹配元素的乙個或多個屬性()。
input.removeattr("title")
title='undefined'
$("input").prop("disabled", false);
$("input").prop("checked", true);
property 特性 attribute 屬性
.removeprop( "disabled" )
disabled= 'undefined'
(主要用於獲取表單元素的值,如input, select 和 textarea)
val=value 他是屬性
$("p").addclass("myclass yourclass");
$("p").removeclass("myclass noclass").addclass("yourclass");
$("p").addclass(function(index));//index 傳入的引數
$('#mydiv').hasclass('foo') 如果有該class 則返回布林值
$('#mydiv').toggleclass('foo') 如果存在就刪除,不存在就新增
width/height 獲取匹配元素集合中的第乙個元素的當前計算高度值。
當呼叫.height(value)方法的時候,這個「value」引數可以是乙個字串(數字加單位)或者是乙個數字。如
果這個「value」引數只提供乙個數字,jquery會自動加上單位px。如果只提供乙個字串,任何有效的css尺寸都
可以為高度賦值(就像100px, 50%, 或者 auto)。注意在現代瀏覽器中,css高度屬性不包含padding,
border, 或者 margin。
innerheight/innerwidth
用於獲得匹配集合中第乙個元素的當前計算的內部高度(包括padding,但不包括border),或 設定每乙個匹配
元素的內部高度。
outheight/outwidth
獲取匹配元素集合中第乙個元素的當前計算外部高度(包括padding,border和可選的margin) 或設定每個匹配
元素的外部高度。p.outerheight( true ) 包括 margin p.outerheight() 不包括
獲取
.css('background') 獲取第乙個css 屬性
$(this).css( ["width", "height", "color", "background-color"] )獲取多個css屬性
設定.css('background','red') 設定集合所有css特定屬性
.css()
js 物件尺寸屬性
scroll 設定或獲取滾動是否關閉。scrolldelay 設定或獲取字幕滾動的速度。scrollheight 獲取物件的滾動高度。scrolling 設定或獲取框架是否可被滾動。scrollleft 設定或獲取位於物件左邊界和視窗中目前可見內容的最左端之間的距離。scrolltop 設定或獲取位...
javascript 常用尺寸屬性
offsetwidth 和 style.width 高度同理 的區別 offsetwidth 會獲取 元素本身的高度 padding border style.width會獲取 元素本身的高度 並且 style.width 只能獲取行內樣式 offsetwidth 返回數字style.width 返...
CSS 尺寸 樣式屬性
百分比 in 英吋 cm 厘公尺 mm 公釐 pt 磅 1pt等於1 72英吋 px 畫素 計算機螢幕上的乙個點 em 1em等於當前的字型尺寸,2em等於當前字型尺寸的兩倍,繼承父級元素的字型大小 rem 與em類似,但是相對於根元素設定字型尺寸的倍數 樣式表中 html div p html文件...