jQuery 자식 팝업 창에서 부모창 컨트롤
$(opener.document).find("#Form").attr("action","index.do").submit();
자식창 -> 부모창으로 값 전달하기
- opener.document.getElementById("id").value="value"; //dom 객체로 제어
$("#id",opener.document).val("value"); // jQuery 방식 1
$("input[name=imgFile]", parent.document.body).val() // 방식 2
$(opener.document).find("#id").val("value"); //방식 3
- opener.location.href="javascript:fun();"; //일반적인 방법
$(opener.location).attr("href","javascript:fun();"); //jQuery 이용
출처 : https://jp1020.tistory.com/entry/jQuery%EC%97%90%EC%84%9C-%ED%8C%9D%EC%97%85-%EB%B6%80%EB%AA%A8opener-%EA%B0%9D%EC%B2%B4-%EC%BB%A8%ED%8A%B8%EB%A1%A4
댓글 없음:
댓글 쓰기