라디오 버튼 링크 문의 입니다. > 그누3질답

그누3질답

라디오 버튼 링크 문의 입니다. 정보

그누보드 라디오 버튼 링크 문의 입니다.

본문

일반회원 기업회원을 2개를 라디오버튼으로 만들고요
일반회원을 체크하고 회원가입하면 mbform.php로 이동
기업회원을 체크하고 회원가입하면 mbform2.php로 이동

위에처럼 하려면 어떻게 처리를 해주어야하나요..?
수고하십시요. 최강그누보드
  • 복사

댓글 전체

일반회원 상단에....

<input type=radio CHECKED onclick="window.location='mbform.php'; return true;">일반회원
<input type=radio onclick="window.location='mbform1.php'; return true;">기업회원

==========================================================================================================
기업회원 상단에...

<input type=radio CHECKED onclick="window.location='mbform.php'; return true;">일반회원
<input type=radio onclick="window.location='mbform1.php'; return true;">기업회원


이런식으로 해도 될듯..
<HTML><HEAD><TITLE>작업물 > 고객센터 > 글 입력</TITLE></HEAD>
<BODY bgColor=#efefef leftMargin=0 topMargin=0>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
  <TR>
    <TD vAlign=top>
      <table cellspacing=2 cellpadding=5 width="100%">
                    <form name=fgbform onSubmit="return fgbform_check(this);"  action=./?doc=bbs/gbupdate.php method=post  enctype=multipart/form-data>
                      <colgroup width=780> <colgroup>
                      <tr>
                        <td bgcolor=#f5f3ee height=30>
                          <input onClick=togDis(myTr); type=radio CHECKED value=0  name=wr_1>
              기업회원가입
              <input onClick=togDis(myTr); type=radio value=1 name=wr_1>
              일반회원가입</td>
                      </tr>
                      <tr id=myTr>
                        <td bgcolor=#f5f3ee height=30>전화상담요청</td>
                      </tr>
                      <tr>
                      <td bgcolor=#f5f3ee>공통내용</td>
  </tr>
                    </form>
                  </table>
                </TD>
              </TR>
</TABLE>
<SCRIPT language=Javascript>
    function togDis(el) {
        var f = document.fgbform;
        if (f.wr_1[0].checked) {           
            el.style.display =  'block'
        } else if (f.wr_1[1].checked) {
            el.style.display = 'none';
        }
    }
    togDis(myTr);
</SCRIPT>
</BODY></HTML>
그냥 일반 페이지 하나 만들어가지고요...
일반회원을 체크하면 mbform.php로가고요..
기업회원을 체크하면 ,mbform2.php로가게하는 로직좀 갈켜주세요..
수고하십시요..
© SIRSOFT
현재 페이지 제일 처음으로