我在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
中发送的值。有可能吗?
答案 0 :(得分:2)
使用按钮元素:
<button type="submit" name="type" value="register">Sign up for an account</button>