제목 | 자바스크립트에서 파라미터값 넘길때.... | ||
---|---|---|---|
글쓴이 | kinkong | 작성시각 | 2015/08/10 17:56:29 |
|
|||
$(".popup_click").click(function() { var width ="700"; var height ="500"; var xPos=(window.screen.width) ? (window.screen.width-width)/2 : 0; var yPos=(window.screen.height) ? (window.screen.height-height)/2 : 0; var sFeatures = "titlebar=no, scrollbars=yes,location=no ,menubar=no, resizable=no, status=no, width="+width+",height="+height+",left="+xPos+", top="+yPos; window.open("/a/b/"+$("#campaign_code").val()+"/copy_popup?type=test","",sFeatures); }); 지금현재 코드이그나터를 사용하고 있습니다, window.open이용하여 팝업창을 띄우고 파라미터값을 보내보려고 하는데 넘어가지가 않는데 제가 잘못한건지 알고 싶습니다. |
|||
다음글 | controller -> model 단으로 데이터... (3) | ||
이전글 | ci 2.2.3 버그인가요? (3) | ||
변종원(웅파)
/
2015/08/10 17:58:47 /
추천
0
a 컨트롤러 b 메소드에서는 type 값을 어떻게 받으셨는데요?
|