*jsp
1)
--list.jsp
:
<form name="searchForm" method="post" action="">
<input type="text" name="searchValue" class="textFiled"/>
<input type="button" value=" 검 색 " class="btn2" onclick="sendIt();"/>
<input type="button" value=" 값넣기 " class="btn2" onclick="insertIt();"/>
</form>
2)
function insertIt() {
window.open('popup.jsp','값이다.','statusbar=no');
}
3)
--popup.jsp
<body>
<table id="testRow" width="600" border="0" cellspacing="1" cellpadding="3" bgcolor="#CCCCCC" align="center">
<tr align="center" bgcolor="#E6E4E6" height="27">
<td id="num" width="40" onclick="num('555');">누름</td>
</tr>
</table>
</body>
4)
function num(number) {
opener.document.searchForm.searchValue.value = number;
window.close();
}
'IT. 컴퓨터' 카테고리의 다른 글
[오라클] 제약조건조회, 테이블명, 컬럼명, 제약조건 이름변경 변경하기 (0) | 2014.02.27 |
---|---|
다리에 깁스하고 있거든 (0) | 2014.01.14 |
엑셀 다운로드 (0) | 2014.01.14 |
달력, 스케줄 (0) | 2013.12.23 |
Can I borrow uour flip-flops? (0) | 2013.12.23 |