블로그 이미지
좋은느낌/원철
이것저것 필요한 것을 모아보렵니다.. 방문해 주셔서 감사합니다..

calendar

1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

Notice

    2008. 8. 23. 11:52 개발/JavaScript

    출처 : OKJSP
    원문 : http://www.okjsp.pe.kr/seq/103876

    <!--
    부모 페이지
    -->

    <script>
    function clickMove2(){
        window.open('',"sm",'width=1024,height=768,left=0,top=0,toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=yes,scrollbars=yes');

     document.frames["tfrm"].listForm.target = "sm";

     document.frames["tfrm"].listForm.action = "detail_view.jsp";
        document.frames["tfrm"].listForm.submit();
    }
    </script>


    <iframe src='%s' name='tfrm' width='100%' height='400' frameborder='0'></iframe>

    <a href="javascript:clickMove2();">링크</a>


    <!--
    iFrame
    -->

    <form name='listForm' method='post'>
    <table>
    </table>
    </form>

    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    난 팝업으로 띄우지 않고 그냥 삽입할 예정이다..
    잘 되어야 할 텐데..

    posted by 좋은느낌/원철