html 如何从unput标签而不是button标签中使用一个submit按钮

gopyfrb3  于 2023-03-27  发布在  其他
关注(0)|答案(1)|浏览(126)
<label>Please enter your name</label><br>
  <input type="text" id="user0name"> <br>
  <button type="button" id="userbutton"></button>
  <input onclick="window.location.href = 'profile.html';" type="submit" value="submit" />

我试图删除按钮标签上的提交按钮的值,但它仍然在这里enter image description here

pinkon5k

pinkon5k1#

这将使您的输入框可以点击:

<input type="text" id="user0name" onclick="window.location.href = 'profile.html';" type="submit" value="submit"> <br>

相关问题