묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
체크박스 3개중에 한개 선택시 비활성되게 하려면 어떻게 해야 되나요
2005.12.27 15:03
제목, 내용, 코멘트 를 선택해서 검색을 하게 되는데
제목, 내용을 체크시 코멘트 비활성되고
코멘트 체크시 제목,내용 비활성되게 하고 싶습니다.
아래는 siche 님의 통합검색 폼부분입니다.
<form name="siche_search" action="<?=$PHP_SELF?>" method="get">
<input type="hidden" name="sno" value="<?=$sno?>">
<input type="hidden" name="siche" value="search">
<input type="hidden" name="page" value="1">
<input type="hidden" name="category" value="<?=$category?>">
<tr>
<td height="1" bgcolor="cccccc" colspan="2"></td>
</tr>
<tr>
<td bgcolor="eeeeee" colspan=2 align=center>
<table width="350" cellspacing="0" cellpadding="0" border="0">
<tr>
<td style="padding-top:10" align="center">
<input type="checkbox" name="ss" value="1" style="border-width:1px;" >제목
<input type="checkbox" name="sm" value="1" style="border-width:1px;" >내용
<input type="checkbox" name="sc" value="1" style="border-width:1px;" >코멘트
<input type="text" name="search" value="<?=$search?>" style="width:135">
<input type="submit" class="siche_submit" value="검색">
</td>
</tr>
<tr>
<td colspan="2"><hr style="width:80%;height:1;color:cccccc"></td>
</tr>
<tr>
<td style="padding-bottom:10" align="center" colspan="2">공백 연산자 <input type="radio" name="oga" value="or" style="border-width:1px;" <?if($oga=="or"){echo "checked";}?>>or <input type="radio" name="oga" value="and" style="border-width:1px;" <?if($oga=="and"){echo "checked";}?>>and / <?=$align_date?>날짜순으로▼</a> <?=$align_subject?>제목순으로▼</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="1" bgcolor="cccccc" colspan="2"></td>
</tr>
</form>
제목, 내용을 체크시 코멘트 비활성되고
코멘트 체크시 제목,내용 비활성되게 하고 싶습니다.
아래는 siche 님의 통합검색 폼부분입니다.
<form name="siche_search" action="<?=$PHP_SELF?>" method="get">
<input type="hidden" name="sno" value="<?=$sno?>">
<input type="hidden" name="siche" value="search">
<input type="hidden" name="page" value="1">
<input type="hidden" name="category" value="<?=$category?>">
<tr>
<td height="1" bgcolor="cccccc" colspan="2"></td>
</tr>
<tr>
<td bgcolor="eeeeee" colspan=2 align=center>
<table width="350" cellspacing="0" cellpadding="0" border="0">
<tr>
<td style="padding-top:10" align="center">
<input type="checkbox" name="ss" value="1" style="border-width:1px;" >제목
<input type="checkbox" name="sm" value="1" style="border-width:1px;" >내용
<input type="checkbox" name="sc" value="1" style="border-width:1px;" >코멘트
<input type="text" name="search" value="<?=$search?>" style="width:135">
<input type="submit" class="siche_submit" value="검색">
</td>
</tr>
<tr>
<td colspan="2"><hr style="width:80%;height:1;color:cccccc"></td>
</tr>
<tr>
<td style="padding-bottom:10" align="center" colspan="2">공백 연산자 <input type="radio" name="oga" value="or" style="border-width:1px;" <?if($oga=="or"){echo "checked";}?>>or <input type="radio" name="oga" value="and" style="border-width:1px;" <?if($oga=="and"){echo "checked";}?>>and / <?=$align_date?>날짜순으로▼</a> <?=$align_subject?>제목순으로▼</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="1" bgcolor="cccccc" colspan="2"></td>
</tr>
</form>
댓글 3
-
!!e비즈_서비
2005.12.27 16:05
-
츠메
2005.12.30 15:44
!!e비즈_서비 님 고맙습니다. 잘 활용하겠습니다. 새해 복 많이 받으세요~ -
!!e비즈_서비
2005.12.30 15:48
뭘요~^^
츠메님도 새해복 많이 받으세요 ^ㅡ^ Happy New Year~! ^^
원하시는게 맞나 모르겠네요..소스는 더 짧게 될텐데...생각나는데로 만든거라서..^^;;;
문제 있으시면 리플요~*
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>체크박스^ㅡ^</title>
</head>
<script language="javascript">
function aa(){with(document.form1){
if (ss.checked == true && sm.checked == true){
sc.disabled = true;
}else if(ss.checked == false || sm.checked == false){
sc.disabled = false;
}
if(sc.checked == true){
ss.disabled = true;
sm.disabled = true;
}else if(sc.checked == false){
ss.disabled = false;
sm.disabled = false;
}
}}
</script>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<form name="form1">
<p><input type="checkbox" name="ss" onClick="aa()">제목 <input type="checkbox" name="sm" onClick="aa()">내용 <input type="checkbox" name="sc" onClick="aa()">코멘트</p>
</form>
<p> </p>
</body>
</html>