UNPKG

@planjs/utils

Version:

🔧 Common tools collection

15 lines (14 loc) • 317 B
/** * 异步请求,或者promise内window open被拦截 * @param url * @category Bom */ function openWindow(url) { var a = document.createElement('a'); a.setAttribute('href', url); a.setAttribute('target', '_blank'); document.body.appendChild(a); a.click(); a.remove(); } export default openWindow;