Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 878 Bytes

20210923124913-html.org

File metadata and controls

27 lines (25 loc) · 878 Bytes

HTML

概要

HTMLはマークアップ言語、Programming Language。 ウェブページを表現するために用いられる。

Memo

submitさせない

buttonタグはデフォルトでsubmitする。つまり画面遷移する。

<button>ボタン</button>
<button type="submit">ボタン</button>

js発動のトリガーにしているときはsubmitする必要がないので、type=”button”を指定する。

<button type="button">ボタン</button>

Tasks

Reference

HTMLのコーディングガイド。

Archives