로그인 하지 않은 회원의 경우는 바로 로그인 창으로 이동하게 하고 싶습니다

비회원이나 로그인하지 않은 회원(비슷한 의미죠??)이 질문하기 버튼을 누르는 경우
로그인 창으로 바로 이동하게 하고 싶습니다.
 
        <table width=100% cellpadding=0 cellspacing=0>
        <tr><td colspan=2 height=35>* 이 상품에 대한 궁금한 사항이 있으신 분은 질문해 주십시오.
            <input type=image src='<? echo "$g4[shop_img_path]/btn_qa.gif"?>' onclick="itemqa_insert(itemqa);" align=absmiddle></td></tr>
        </table>
 
그래서, onclick을 했을 때 회원인지 확인을 해서 로그인 화면으로 이동하도록
만들었습니다. 이동은 잘 하고 있는데... 문제는 비회원을 위한 입력창이 보인
이후에 이동을 한다는 겁니다. 바로 이동하게 만들 수 없나요???
 
제가 해보니까 계속 오류가 나서 짜집기의 한계를 느끼네요. -..-a
 
 
<script language="JavaScript">
function itemqa_insert()
{
    var f = document.fitemqa;
    var id = document.getElementById('itemqa');
    id.style.display = 'block';
    f.w.value = '';
    f.iq_id.value = '';
    if (!g4_is_member)
    {
        <?
        echo "document.location.href = '$g4[path]/bbs/login.php?url=".urlencode("$g4[shop_path]/item.php?it_id=$it[it_id]")."';";
        ?>

       
        // f.iq_name.value = '';
        // f.iq_name.readOnly = false;
        // f.iq_password.value = '';
    }
    f.iq_subject.value = '';
    f.iq_question.value = '';
}
|

댓글 2개

function itemqa_insert()
{
var f = document.fitemqa;
var id = document.getElementById('itemqa');

f.w.value = '';
f.iq_id.value = '';
if (!g4_is_member)
{
<?
echo "document.location.href = '$g4[path]/bbs/login.php?url=".urlencode("$g4[shop_path]/item.php?it_id=$it[it_id]")."';";
?>

// f.iq_name.value = '';
// f.iq_name.readOnly = false;
// f.iq_password.value = '';
} else {
id.style.display = 'block';
}
f.iq_subject.value = '';
f.iq_question.value = '';
}
감사합니다. 너무 잘 동작 합니다.

id.style.display = 'block'; 이것이 java script에서 form을 보여주는 함수였군요. ㅋㅋ...
댓글을 작성하시려면 로그인이 필요합니다. 로그인

그누4 질문답변

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

+
제목 글쓴이 날짜 조회
18년 전 조회 1,672
18년 전 조회 1,606
18년 전 조회 1,522
18년 전 조회 2,311
18년 전 조회 2,096
18년 전 조회 1,532
18년 전 조회 1,573
18년 전 조회 1,682
18년 전 조회 1,571
18년 전 조회 1,514
18년 전 조회 1,698
18년 전 조회 1,565
18년 전 조회 1,626
18년 전 조회 1,963
18년 전 조회 1,705
18년 전 조회 1,446
18년 전 조회 1,677
18년 전 조회 2,140
18년 전 조회 1,528
18년 전 조회 1,547
🐛 버그신고