Manipulation-General Attributes

 

一、.attr()

針對集合取得或設定指定屬性值。

 有四個多載方法。

 

Get:

.attr( attributeName )

Set:

.attr( String attributeName, Value value )

.attr( PlainObject attributes )

.attr( String attributeName, Function function )

 

二、.prop()

針對集合取得指定屬性值。

用法請參考.attr()與.prop()的差異

 

三、.removeAttr()

針對集合移除指定屬性。

 

四、.removeProp()

針對集合移除指定屬性。

 

五、.val()

回傳或取得該元素的內文

 

Get:

.val()

Set:

.val( Value value )

.val( Function function )

 

請參考.html() .text() .val() 的差別與前端html編解碼