Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

button要素 formtarget属性

button要素のformtarget属性は、form要素のtarget属性と同じ意味をもちますが、form要素よりも優先されます。

使用例

start.html
<!DOCTYPE html>
<html lang="ja">
<head>
<title>Hello! HTML5</title>
<meta charset="UTF-8">
</head>
<body>
    <form action="./regeister.html" method="post" enctype="text/plain" id="order" target="_blank">
        <p>
            名前:<input type="text" id="name" />
        </p>
        <p>
	<button type="submit">結果を別のタブに表示</button>
        <button type="submit" formtarget="_self">結果を同じタブに表示</button>
        </p>
    </form>
</body>
regeister.html
<!DOCTYPE html>
<html lang="ja">
<head>
<title>Hello! HTML5</title>
<meta charset="UTF-8">
</head>
<body>
登録しました。
</body>

レンダリング

初期表示

[結果を別のタブに表示]クリック

[結果を同じタブに表示]クリック