04.RemoveAttr.htm |
<html xmlns="http://www.w3.org/1999/xhtml"> <head>
<title>특정 속성을 지우기</title>
<script src="../jQuery/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{ //버튼 클릭시 특성/속성/attribute/어트리뷰트/애트리뷰트 제거 $('#btnRemove').click(function() { $('img:first').removeAttr("src"); //src 속성 삭제 });
});
</script> </head> <body>
<!--버튼 클릭시 동적으로 이미지 경로 삭제-->
<input type="button" id="btnRemove" value="src삭제" />
<img src="../ProductImages/thumbs/HARDWARE-01.jpg" alt="하드웨어"/>
<img src="../ProductImages/thumbs/HARDWARE-01.jpg" alt="하드웨어"/>
</body> </html> |
결과화면 |
[그림30-1] |
'jQuery | javascript | CSS' 카테고리의 다른 글
32.jQuery - Val ( 03.Attributes - 06.Val.htm ) (1) | 2009.11.10 |
---|---|
31.jQuery - Text ( 03..Attributes - 05.Text ) (0) | 2009.11.10 |
29.jQuery - MapCollection ( 03.Attributes - 03.MapCollectio ) (0) | 2009.11.10 |
28.jQuery - ShowBigImg ( 03.Attributes - 02.ShowBigImg ) (0) | 2009.11.10 |
27.jQuery - Attributes ( 03.Attributes - 01.Attr ) (0) | 2009.11.10 |
Comments