이벤트 클릭 하여 다른 페이지 로 열기

492 단어 js

  • 	const env = process.env.API_ENV
        window.open(`${env === 'prod' ? 'https' : 'http'}://www.baidu.com`);
    

    1.1
        const tempWindow = window.open('_black');
        tempWindow.location = 'http://www.baidu.com'
    

  • const a = document.createElement.('a');
    a.href = 'https://www.baidu.com';
    a.target = '_black';
    a.click();
    

    좋은 웹페이지 즐겨찾기