const isExternalLink = (url) => { const tmp = document.createElement('a'); tmp.href = url; return tmp.host !== window.location.host; }; ...
確定! 回上一頁