浅谈<button>与<input>

<button>只想简简单单的做个按钮。而<input>更多的侧重于表单提交.。

1.<button>

文字按钮:

<button type="button">这是一个按钮</button>

图片按钮:

<button type="button">
   <img src="https://www.baidu.com/img/bd_logo1.png(随便填一个图片地址就好)" width="100" height="50">
</button>


请注意写 type="button"让我们来看看w3c的解释:

<button> 标签定义一个按钮。

在 button 元素内部,您可以放置内容,比如文本或图像。这是该元素与使用 input 元素创建的按钮之间的不同之处。

<button> 控件 与 <input type="button"> 相比,提供了更为强大的功能和更丰富的内容。<button> 与 </button> 标签之间的所有内容都是按钮的内容,其中包括任何可接受的正文内容,比如文本或多媒体内容。例如,我们可以在按钮中包括一个图像和相关的文本,用它们在按钮中创建一个吸引人的标记图像。

唯一禁止使用的元素是图像映射,因为它对鼠标和键盘敏感的动作会干扰表单按钮的行为。

请始终为按钮规定 type 属性。Internet Explorer 的默认类型是 "button",而其他浏览器中(包括 W3C 规范)的默认值是 "submit"。

2.<input>

一般都是拿来在<form>里面提交表单的用法

<form action="http://www.w3school.com.cn/example/html/form_action.asp"
    method="get">
    请选择你喜爱的项目:
    <input name="subject" type="submit" value="123">
    <input name="subject" type="submit" value="321">
</form>

//name可以重复 id只能一个 action是提交的位置 value是提交的值

但是你说我非要用button呢

  <form action="http://www.w3school.com.cn/example/html/form_action.asp"
    method="get">
    请选择你喜爱的项目:
    <button name="subject" type="subject" value="HTML">HTML</button>
    <button name="subject" type="submit" value="CSS">CSS</button>
 </form>


        <!--在这个地方用到form和button进行结合使用,其实form提供的是
        一个来链接,button的属性是提交submit,而且method方法是得到
        应该注意的是button标签尽量少和form一起使用,因为不同的浏览器提交的
        内容是不同的,有的 是value的值,有的 是button之间的内容  -->


一些来自互联网的内容:

在一个页面上画一个按钮,有四种办法:
  • <input type="button" /> 这就是一个按钮。如果你不写javascript 的话,按下去什么也不会发生。
  • <input type="submit" /> 这样的按钮用户点击之后会自动提交 form,除非你写了javascript 阻止它。
  • <button> 这个按钮放在 form 中也会点击自动提交,比前两个的优点是按钮的内容不光可以有文字,还可以有图片等多媒体内容。(当然,前两个用图片背景也可以做到)。它的缺点是不同的浏览器得到的 value 值不同;可能还有其他的浏览器兼容问题(葛亮)。
  • 其他标签,例如 a, img, span, div,然后用图片把它伪装成一个按钮。
参见:
[原]<button>和<input type="button"> 的区别
html - Difference between <input type='button' /> and <input type='submit' />
html - input type="submit" Vs button tag are they interchangeable?


作者:王洪雷
链接:https://www.zhihu.com/question/20839977/answer/16354924
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

 

<!DOCTYPE html> <!-- 声明文档类型 --> <html> <head> <meta charset="UTF-8"> <!-- 设置字符编码为UTF-8 --> <title>酒店管理系统</title> <!-- 设置网页标题 --> <link rel="stylesheet" href="style.css"> <!-- 引入外部样式表 --> </head> <body> <header> <!-- 设置网页头部 --> <h1>酒店管理系统</h1> <!-- 设置网页标题 --> </header> <main> <!-- 设置网页主体内容 --> <h2>酒店客房管理</h2> <!-- 设置主体内容标题 --> <table> <!-- 创建表格 --> <thead> <!-- 设置表格头部 --> <tr> <!-- 创建表格行 --> <th>ID</th> <!-- 创建表格头部单元格 --> <th>类型</th> <th>价格</th> <th>编辑</th> </tr> </thead> <tbody> <!-- 设置表格内容 --> <tr> <td>1</td> <!-- 创建表格单元格,并填写内容 --> <td>单人房</td> <td>¥200</td> <td><button class="edit-btn">编辑</button></td> <!-- 创建带有“编辑”按钮的单元格 --> </tr> <tr> <td>2</td> <td>双人房</td> <td>¥300</td> <td><button class="edit-btn">编辑</button></td> </tr> <tr> <td>3</td> <td>豪华房</td> <td>¥500</td> <td><button class="edit-btn">编辑</button></td> </tr> </tbody> </table> <div class="add-form"> <!-- 创建添加客房的表单 --> <h3>添加客房</h3> <!-- 设置表单标题 --> <form> <!-- 创建表单 --> <div> <label for="room-id">ID:</label> <!-- 创建表单标签和输入框 --> <input type="number" id="room-id" required> <!-- 设置输入框类型为数字,且必填 --> </div> <div> <label for="room-type">类型:</label> <input type="text" id="room-type" required> <!-- 设置输入框类型为文本,且必填 --> </div> <div> <label for="room-price">价格:</label> <input type="number" id="room-price" required> </div> <button type="submit">添加</button> <!-- 创建提交按钮 --> </form> </div> </main> <script src="script.js"></script> <!-- 引入外部JavaScript文件 --> </body> </html>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值