如何设置按钮的标签而不更改帖子中的值

时间:2013-05-23 09:18:44

标签: html forms

我在html中有这段代码:

<form action="/login/" method="post">
<input type="text" name="login">
<input type="text" name="pass">
<input type="submit" value="login"  name="type" >
<input type="submit" value="register" name="type" >

</form>

当我提交此表单时,它会发送get请求,并单击按钮字段的值。但是,我想更改按钮的标签而不更改get中发送的值。有可能吗?

1 个答案:

答案 0 :(得分:2)

使用按钮元素:

<button type="submit" name="type" value="register">Sign up for an account</button>

请注意old IE has problems with this