일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 알고리즘
- 권주현의 진짜 영국 영어
- 2630번
- BinaryGap
- 18406번
- 1759번
- caniuse
- 2163번
- 9251번
- 1057번
- 11727번
- 입이 트이는 영어
- 분할정복
- 1793번
- 프로그래머스
- 11047번
- SecurityFilterChain
- 파이썬
- Java
- programmers
- 1992번
- 신규아이디추천
- EBS어학당
- WebSecurityConfigurerAdapter
- python
- 영어
- 백준
- Spring Security
- github
- codility
Archives
- Today
- Total
철갑이의 이모저모
[javascript] 팝업 차단 피하기(강제로 띄우기) 본문
728x90
1. 비동기 처리를 하기 전에 새창을 띄운다
2. 비동기 작업이 끝난 후 url을 설정해준다
function Pop(){
// 비동기 call 전 팝업창을 띄워줌
var Popup = window.open(url, windowName, [windowFeatures]);
$.ajax({
url:"url",
success:function(response){
// 비동기 작업이 끝난 후 url 설정
if(Popup) {
Popup.location.href=response;
}
}
);
}
참고 : https://stackoverflow.com/questions/20696041/window-openurl-blank-not-working-on-imac-safari
728x90
'javascript' 카테고리의 다른 글
[javascript]redirect하는 방법(location.href 와 location.replace 차이) (0) | 2022.02.19 |
---|