묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
[질문] FORM 태그에세 입력한 값을... 새창으로...
2002.08.08 05:07
예를 들어...
<form name=test method="post" action="test.php">
<table border="0">
<tr>
<td>아이디 : <input type="text" size="10" name="id"><br>
비밀번호 : <input type="password" size="10" name="pw" maxlength="8"><br>
<input type="image" src="login.gif" border="0">
</td>
</tr>
</table>
</form>
이랬을때여... 입력란에 입력을 다하고... 엔터나 크릭을 하면...
현재창이 아닌... 새로운 창을 열고... 거기에 적용시킬려면 어떻게 해야 할까요...?
부탁드립니다...
<form name=test method="post" action="test.php">
<table border="0">
<tr>
<td>아이디 : <input type="text" size="10" name="id"><br>
비밀번호 : <input type="password" size="10" name="pw" maxlength="8"><br>
<input type="image" src="login.gif" border="0">
</td>
</tr>
</table>
</form>
이랬을때여... 입력란에 입력을 다하고... 엔터나 크릭을 하면...
현재창이 아닌... 새로운 창을 열고... 거기에 적용시킬려면 어떻게 해야 할까요...?
부탁드립니다...
댓글 3
-
뒹굴리스트
2002.08.08 08:41
-
이호한
2002.08.08 09:44
우리 제발 검색 먼저 해봅시다요... 예전 스터디 질문 게시판에서 "새창"으로 검색하면 원하는 답이 있습니다.
<script>
function fun()
{
var win = window.open("about:blank","popup","옵션");
document.f.target = win.name;
document.f.action = "페이지이름";
document.f.submit();
}
</script>
<form name=f>
<input type=hidden name=a value="a">
</form> -
두루
2002.08.08 13:32
검색 안해봐서 죄송합니다...
답변 감사드립니다...
<html>
<script>
window.open('새로 창 뜰 주소.php?id=<?=$id?>&pw=<?=$pw?>','new_win');
</script>
</html>
이정도로...;
쿨럭;