溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何使用bootstrap按鈕插件

發(fā)布時(shí)間:2021-03-30 17:54:30 來源:億速云 閱讀:139 作者:Leah 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)如何使用bootstrap按鈕插件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

按鈕插件(Button)學(xué)習(xí)筆記:

按鈕插件

樣式文件:
? LESS版本:源文件buttons.less

? 點(diǎn)擊按鈕時(shí),按鈕文字變?yōu)椤罢诩虞d…”,一旦加載完之后又變回“獲取數(shù)據(jù)”。簡(jiǎn)單點(diǎn)說就是控制按鈕狀態(tài),比如禁用狀態(tài)、正在加載狀態(tài)、正常狀態(tài)等;
? 按鈕切換狀態(tài)
? 按鈕模仿單選按鈕
? 按鈕模仿復(fù)選按鈕

按鈕插件–按鈕加載狀態(tài)
通過按鈕可以設(shè)計(jì)狀態(tài)提示,當(dāng)單擊按鈕時(shí),會(huì)顯示loading狀態(tài)信息。例如,點(diǎn)擊“加載”按鈕,會(huì)觸發(fā)按鈕的加載的狀態(tài)

加載

通過data-loading-text屬性定義加載的文本信息,然后通過JavaScript給按鈕綁定一個(gè)事件,并給按鈕添加一個(gè)button(“l(fā)oading”)方法來激活按鈕的加載狀態(tài)行為。如下所示:

$(function(){
 $("#loaddingBtn").click(function () {
  $(this).button("loading");
  });
});

按鈕插件–模擬單選擇按鈕

在Bootstrap框架中按鈕插件中,可以通過給按鈕組自定義屬性data-toggle=”buttons”

<div class="btn-group">
 <label class="btn btn-primary">
  <input type="radio" name="options" id="options1">男
 </label>
 <label class="btn btn-primary">
  <input type="radio" name="options" id="options2">女
 </label>
 <label class="btn btn-primary">
  <input type="radio" name="options" id="options3">未知
 </label>
</div>
----------------------------------------------------------------------
<div class="btn-group" data-toggle="buttons">
 <label class="btn btn-primary">
  <input type="radio" name="options" id="options1">男
 </label>
 <label class="btn btn-primary">
  <input type="radio" name="options" id="options2">女
 </label>
 <label class="btn btn-primary">
  <input type="radio" name="options" id="options3">未知
 </label>
</div>

按鈕插件–模擬復(fù)選按鈕

<div class="btn-group">
 <label class="btn btn-primary">
  <input type="checkbox" name="options" id="options1">電影
 </label>
 <label class="btn btn-primary">
  <input type="checkbox" name="options" id="options2">音樂
 </label>
 <label class="btn btn-primary">
  <input type="checkbox" name="options" id="options3">游戲
 </label>
 <label class="btn btn-primary">
  <input type="checkbox" name="options" id="options4">攝影
 </label>
</div>
-------------------------------------------------------------------
<div class="btn-group" data-toggle="buttons">
 <label class="btn btn-primary">
  <input type="checkbox" name="options" id="options1">電影
 </label>
 <label class="btn btn-primary">
  <input type="checkbox" name="options" id="options2">音樂
 </label>
 <label class="btn btn-primary">
  <input type="checkbox" name="options" id="options3">游戲
 </label>
 <label class="btn btn-primary">
  <input type="checkbox" name="options" id="options4">攝影
 </label>
</div>

按鈕插件–按鈕狀態(tài)切換

使用 data-toggle 屬性還可以激活按鈕的行為狀態(tài),實(shí)現(xiàn)在激活和未激活之間進(jìn)行狀態(tài)切換。

<button type="button" data-toggle="button" class="btn btn-primary">確認(rèn)</button>

按鈕插件–JavaScript用法

1、切換按鈕狀態(tài)(得到焦點(diǎn))

$("#mybutton").button("toggle")

2、重新恢復(fù)按鈕:

$("#mybutton").button("reset")

3、任意參數(shù):

$(“#mybutton”).button(“任意字符參數(shù)名”)

替換 data-任意字符參數(shù)名-text 的屬性值為“按鈕上顯示的文本值”

關(guān)于如何使用bootstrap按鈕插件就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI