2012-05-16 103 views

回答

2

您可以使用jQuery:

$('body').on('click', 'img', function() { 
    $(this).addClass('with-round-corners'); 
}); 
+0

我想申請邊境,它應該是圓形的,只在選定的圖像區域標籤,我該怎麼做? – Joy

+0

使用webkit-border-radius:使用此答案的50% –

0

您可以使用CSS

img{ 
    border:none; 
} 
img:hover{ 
    border:1px solid; 
} 
+0

我想要應用邊框,它應該是圓形的,僅適用於所選圖像區域標籤,我認爲這不會有幫助。 – Joy

0
img 
{ 
border:0px; 
} 
img:hover 
{ 
border:1px solid black; 
border-radius:5px; 
} 
0

使用下方點擊jQuery代碼:

$(imageAreasSelector).css({ 'border': '1px solid Red' }); 
$(imageAreasSelector).css({ 'border-radius': '5px' }); 
+0

會做到這一點,不幸的是,圖像選擇器沒有任何ID。它從服務器端(ASP.NET)動態填充,不允許添加任何id屬性。 – Joy