Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Bootstrap JS 按钮


JS 按钮 (button.js)

如果您希望对按钮有更多控制权,请使用此插件。

有关按钮的教程,请阅读我们的 Bootstrap 按钮教程


按钮插件类

以下类可用于为任何 <a>、<button> 或 <input> 元素设置样式

描述 示例
.btn 为任何按钮添加基本样式 试试
.btn-default 表示默认/标准按钮 试试
.btn-primary 提供额外的视觉权重,并识别一组按钮中的主要操作 试试
.btn-success 表示成功或积极的操作 试试
.btn-info 用于信息警报消息的上下文按钮 试试
.btn-warning 表示此操作应谨慎执行 试试
.btn-danger 表示危险或可能为负面的操作 试试
.btn-link 使按钮看起来像链接(仍将具有按钮行为) 试试
.btn-lg 使按钮变大 试试
.btn-sm 使按钮变小 试试
.btn-xs 使按钮变为超小 试试
.btn-block 使按钮为块级元素(跨越父元素的整个宽度) 试试
.active 使按钮看起来处于按下状态 试试
.disabled 使按钮失效 试试

通过 JavaScript

使用以下方法手动启用

$('.btn').button();


按钮选项

按钮方法

下表列出了所有可用的按钮方法。

注意:对于此插件,方法也可以通过数据属性传递;将方法名附加到 data-,如 data-toggle 或 data-loading。

方法 描述 试试
.button("toggle") 使按钮看起来处于按下状态 试试
.button("loading") 禁用按钮并将按钮文本更改为“加载中...” 试试
.button("reset") 将按钮文本更改为原始文本(如果已更改) 试试
.button("string") 指定新的按钮文本 试试

更多示例

使用 CSS 自定义按钮

如何移除圆角边框

示例

.btn-default {
  border-radius: 0;
}
自己尝试 »

如何添加特定颜色

示例

.btn-default {
  background: #000;
  color: #fff;
}

.btn-default:hover {
  background: #fff;
  color: #000;
}
自己尝试 »

如何添加阴影

示例

.btn-default {
  box-shadow: 1px 2px 5px #000000;
}
自己尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.