03.Not.htm |
<html xmlns="http://www.w3.org/1999/xhtml"> <head>
<title>지정된 표현식을 제외한 집합 가져오기</title>
<style type="text/css">
.Yellow{ background-color:Yellow;
}
</style>
<script src="../jQuery/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{ //라디오버튼을 제외한 input 태그에 배경색을 Yellow로 설정 $('input').not("input[type=radio]").each(function(){ $(this).addClass("Yellow").css("border", "1px
solid red"); });
});
</script> </head> <body>
<div id="myForm">
<input type="text" />
<input type="password" />
<input type="radio" />
</div> </body> </html> |
결과화면 |
[그림35-1] |
'jQuery | javascript | CSS' 카테고리의 다른 글
-- 현재 까지의 jQuery 소스4 -- (0) | 2009.11.11 |
---|---|
36.jQuery - End ( 04.Traversing - 04.End ) (0) | 2009.11.11 |
34.jQuery - Is ( 04.Traversing - 02.Is) (0) | 2009.11.11 |
33.jQuery - Eq ( 04.Traversing - 01.Eq) (0) | 2009.11.11 |
-- 현재 까지의 jQuery 소스3 -- (0) | 2009.11.10 |
Comments