按钮和输入之间的区别?

发布于 2024-10-08 18:18:10 字数 239 浏览 2 评论 0原文

另外,您可以使用吗?

Are there any major differences between <button type="button" name="theButton">SUBMIT</button> and <input type="submit" value="SUBMIT" name="theButton" />

Also, can you use <button type="submit" name="theButton">SUBMIT</button>?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赠意 2024-10-15 18:18:10

Here's a page describing the differences (basically you can put html into a <button></button>

And an other page describing why people avoid <button></button> (Hint: IE6)

Reference: <button> vs. <input type="button" />. Which to use?

Also have a look at this slideshow about button.

揽清风入怀 2024-10-15 18:18:10

不会提交表单(除了某些浏览器中的错误)

将提交表单。

另外,您可以使用吗?

将提交表单,但没有值(IE 中的错误除外)

<button type="button" name="theButton">SUBMIT</button>

Won't submit a form (bugs in some browsers aside)

<input type="submit" value="SUBMIT" name="theButton" />

Will submit a form.

Also, can you use <button type="submit" name="theButton">SUBMIT</button>?

Will submit a form, but doesn't have a value (bugs in IE aside)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文