Home > Web Front-end > H5 Tutorial > input type="submit" 和"button"有什么区别?

input type="submit" 和"button"有什么区别?

WBOY
Release: 2016-06-07 08:42:29
Original
1470 people have browsed it

回复内容:

谢谢邀请。
在一个页面上画一个按钮,有四种办法:
  • 这就是一个按钮。如果你不写javascript 的话,按下去什么也不会发生。
  • 这样的按钮用户点击之后会自动提交 form,除非你写了javascript 阻止它。
  • 这个按钮放在 form 中也会点击自动提交,比前两个的优点是按钮的内容不光可以有文字,还可以有图片等多媒体内容。(当然,前两个用图片背景也可以做到)。它的缺点是不同的浏览器得到的 value 值不同;可能还有其他的浏览器兼容问题(葛亮)。
  • 其他标签,例如 a, img, span, div,然后用图片把它伪装成一个按钮。
参见:
[原]无法把自己当成Form的数据。
所以,如果只是个单纯的按钮,触发一些画面动作,请使用;反之,会把画面的数据提交给Server的,一般用,当然+JS也完全可以取代。 当onclick的时候给他return false
w3.org/1999/xhtml">











source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template