소스하나만 질문드립니다 > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

소스하나만 질문드립니다 정보

소스하나만 질문드립니다

본문

<table width=100% border=1 border-color=#cccccc cellpadding=0 cellspacing="0">


border가 1px이고 cccccc컬러인데



마우스오버시 border 2px에 FF0000 로 변경되게할수있을까요?

가능하다면 소스좀 부탁드립니다.

  • 복사

댓글 전체

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> New Document </title>
 <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript">
$(function(){
$("#aa").mouseenter(function(){
$(this).css("border","2px solid #FF0000");
});

$("#aa").mouseleave(function(){
$(this).css("border","1px solid #cccccc");
})

});
</script>
 </head>

 <body>
  <table width="100" id="aa" style="border:1px solid #cccccc;" cellpadding=0 cellspacing="0">
<tr>
<td>11111111</td>
</tr>
  </table>
 </body>
</html>
© SIRSOFT
현재 페이지 제일 처음으로