게시판 댓글을 radio button으로 입력하고 싶은데요.
본문
댓글 입력창으로 textarea 아닌 ,라디오 버튼 input type="radio"으로 하고 싶어서
view_comment.skin 파일 내의 댓글 입력을 아래와 같이 변경을 하였는데
2번째 이후 부터는 댓글이 모두 적용이 되어 나오는데
첫번째 라디오 버튼을 체크한 댓글이 표시가 되질 않습니다.
<input type="radio" id="wr_content" name="wr_content" value="1"<?php echo ($c_wr_content == "1") ? " checked" : "";?> required> 서울
<label for="wr_content"> <span class="sound_only">지역구</span></label>
<input type="radio" id="wr_content" name="wr_content" value="1"<?php echo ($c_wr_content == "1") ? " checked" : "";?> required> 서울
<input type="radio" id="wr_content" name="wr_content" value="2"<?php echo ($c_wr_content == "2") ? " checked" : "";?> required> 경기도
<input type="radio" id="wr_content" name="wr_content" value="3"<?php echo ($c_wr_content == "3") ? " checked" : "";?> required> 인천
<input type="radio" id="wr_content" name="wr_content" value="4"<?php echo ($c_wr_content == "4") ? " checked" : "";?> required> 세종시
<input type="radio" id="wr_content" name="wr_content" value="5"<?php echo ($c_wr_content == "5") ? " checked" : "";?> required> 강원도
답변 4
<label for="wr_content_1"> <span class="sound_only">라디오박스</span></label>
<input type="radio" id="wr_content_1" name="wr_content" value="6"<?php echo ($wr_content == "6") ? " checked" : "";?> required> 순서
<input type="radio" id="wr_content_2" name="wr_content" value="1"<?php echo ($wr_content == "1") ? " checked" : "";?> required> 1
<input type="radio" id="wr_content_3" name="wr_content" value="2"<?php echo ($wr_content == "2") ? " checked" : "";?> required> 2
<input type="radio" id="wr_content_4" name="wr_content" value="3"<?php echo ($wr_content == "3") ? " checked" : "";?> required> 3
<input type="radio" id="wr_content_5" name="wr_content" value="4"<?php echo ($wr_content == "4") ? " checked" : "";?> required> 4
<input type="radio" id="wr_content_6" name="wr_content" value="5"<?php echo ($wr_content == "5") ? " checked" : "";?> required> 5
view_comment.skin.php 전체를 올려 보세요.
<label for="wr_content"> <span class="sound_only">라디오박스</span></label>
<input type="radio" id="wr_content" name="wr_content" value="6"<?php echo ($wr_content == "6") ? " checked" : "";?> required> 순서
<input type="radio" id="wr_content" name="wr_content" value="1"<?php echo ($wr_content == "1") ? " checked" : "";?> required> 1
<input type="radio" id="wr_content" name="wr_content" value="2"<?php echo ($wr_content == "2") ? " checked" : "";?> required> 2
<input type="radio" id="wr_content" name="wr_content" value="3"<?php echo ($wr_content == "3") ? " checked" : "";?> required> 3
<input type="radio" id="wr_content" name="wr_content" value="4"<?php echo ($wr_content == "4") ? " checked" : "";?> required> 4
<input type="radio" id="wr_content" name="wr_content" value="5"<?php echo ($wr_content == "5") ? " checked" : "";?> required> 5
이렇게 도 해봤는데요
첫번째 라디오 버튼은 입력값이 나오질 않습니다.
!-->
브라우저 소스보기"로
해당 부분에 원하시는 대로 html이 나왔는지 확인해 보시고
그랬다면
아마 css 문제로 안 보이는 게 아닐까요?
답변을 작성하시기 전에 로그인 해주세요.