“Ссылка на кнопку HTML” Ответ

href на кнопке

<button onclick="window.location.href='/page2'">Continue</button>
STIFLER

Ссылка на кнопку HTML

<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Arab Fire Shaman

Buton html href

<!-- if you are on Window : --> 
<button onclick="window.location.href='page2.html'">
  Button
</button>

<!-- if you are on linux or macOS : -->
<button onclick="location.href='page2.html'">
  Button
</button>
Pr.Gaultier

кнопка HTML по ссылке

<a href="https://www.google.com">
  <button>Go to Google</button>
</a>
hateschoollovecoding

Добавить ссылку за кнопку в HTML

<!DOCTYPE html>
<html>
   <head>
      <title>Title of the document</title>
   </head>
   <body>
      <form>
         <input type="button" onclick="window.location.href = 'https://www.w3docs.com';" value="w3docs"/>
      </form>
   </body>
</html>
Aggressive Anaconda

Ссылка на кнопку HTML

<button onclick="window.location='(link)'"> Click this </button>
Super Shark

Ответы похожие на “Ссылка на кнопку HTML”

Вопросы похожие на “Ссылка на кнопку HTML”

Больше похожих ответов на “Ссылка на кнопку HTML” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования