중복 아이디 체크에서 자바스크립트에서 변수값을 넘기려고 합니다.< br>
근데 변수값이 넘어가질 않네요.< br>
좀 봐주세욤....< br>
window.open('check_id.php?id=FORM.id.value;','REGIST','width=250,height=160,status=no,top=' + window_top < br>
+ ',left=' + window_left + '');< br>
< br>
< br>
< br>
새창 띄우기를 해서 변수를 넘기려고 합니다.< br>
그래야지 아이디 중복 체크가 되겠지요.< br>
php에서 변수 넘기는 곳이 잘못된거 같은데.....< br>
좀 알려주세요
답변 1개
window.open('check_id.php?id=FORM.id.value;','REGIST','width=250,height=160,status=no,top=' + window_top
- ',left=' + window_left + '');
window.open('check_id.php?id=' + FORM.id.value,'REGIST','width=250,height=160,status=no,top=' + window_top
- ',left=' + window_left + '');
이렇게 +기호를 붙여보세요..
답변을 작성하려면 로그인이 필요합니다.