jQuery ÊôÐÔ²Ù×÷ - attr() ·½·¨
ʵÀý
¸Ä±äͼÏñµÄ width ÊôÐÔ£º
$("button").click(function(){
$("img").attr("width","180")
;
});
¶¨ÒåºÍÓ÷¨
attr() ·½·¨ÉèÖûò·µ»Ø±»Ñ¡ÔªËصÄÊôÐÔÖµ¡£
¸ù¾Ý¸Ã·½·¨²»Í¬µÄ²ÎÊý£¬Æä¹¤×÷·½Ê½Ò²ÓÐËù²îÒì¡£
·µ»ØÊôÐÔÖµ
·µ»Ø±»Ñ¡ÔªËصÄÊôÐÔÖµ¡£
Óï·¨
$(selector).attr(attribute)
²ÎÊý | ÃèÊö |
---|---|
attribute | ¹æ¶¨Òª»ñÈ¡ÆäÖµµÄÊôÐÔ¡£ |
ÉèÖÃÊôÐÔ/Öµ
ÉèÖñ»Ñ¡ÔªËصÄÊôÐÔºÍÖµ¡£
Óï·¨
$(selector).attr(attribute,value)
²ÎÊý | ÃèÊö |
---|---|
attribute | ¹æ¶¨ÊôÐÔµÄÃû³Æ¡£ |
value | ¹æ¶¨ÊôÐÔµÄÖµ¡£ |
ʹÓú¯ÊýÀ´ÉèÖÃÊôÐÔ/Öµ
ÉèÖñ»Ñ¡ÔªËصÄÊôÐÔºÍÖµ¡£
Óï·¨
$(selector).attr(attribute,function(index,oldvalue))
²ÎÊý | ÃèÊö |
---|---|
attribute | ¹æ¶¨ÊôÐÔµÄÃû³Æ¡£ |
function(index,oldvalue) |
¹æ¶¨·µ»ØÊôÐÔÖµµÄº¯Êý¡£ ¸Ãº¯Êý¿É½ÓÊÕ²¢Ê¹ÓÃÑ¡ÔñÆ÷µÄ index ÖµºÍµ±Ç°ÊôÐÔÖµ¡£ |
ÉèÖöà¸öÊôÐÔ/Öµ¶Ô
Ϊ±»Ñ¡ÔªËØÉèÖÃÒ»¸öÒÔÉϵÄÊôÐÔºÍÖµ¡£
Óï·¨
$(selector).attr({attribute:value, attribute:value ...})
²ÎÊý | ÃèÊö |
---|---|
attribute:value | ¹æ¶¨Ò»¸ö»ò¶à¸öÊôÐÔ/Öµ¶Ô¡£ |