HTML action 屬性
定義和用法
action
屬性規定了當表單被提交時,表單資料要傳送到何處。
適用範圍
action
屬性可用於以下元素:
元素 | Attribute |
---|---|
<form> | action |
示例
表單示例
提交時,將表單資料傳送到名為 "/action_page.php" 的檔案(用於處理輸入)
<form action="/action_page.php" method="get">
名:<input type="text" name="fname"><br>
姓:<input type="text" name="lname"><br>
<input type="submit" value="提交">
</form>
自己動手試一試 »
瀏覽器支援
Attribute | |||||
---|---|---|---|---|---|
action | 是 | 是 | 是 | 是 | 是 |