Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
onclick="window.location.href = 'url1'; window.location.href = 'url2';"
<button type="button" onclick="window.location.href = 'url1'; window.location.href = 'url2';">Кнопка</button>
<button type="button" onclick="window.open('url1'); window.open('url2');">Кнопка</button>
Второй код вообще не работает
<span onclick="window.location.href = 'url2';"><button type="button" onclick="window.location.href = 'url1';">Кнопка</button></span>
window.location.href
window.open
<span onclick="window.open('url2');"><button type="button" onclick="window.open('url1');">Кнопка</button></span>
window.open("example.com", "_blank"); window.open("example2.com", "_blank");