bootstrap-confirmation

bootstrap-confirmation按钮提示组件,它类似于js里面confirm的功能,界面更加美观。

介绍这个组件之前,可以先来看看bootstrap里面提示框的效果:


1、源码地址

http://ethaizone.github.io/Bootstrap-Confirmation/


2、效果展示



3、代码示例

所需引入的js和css

<link href="css/bootstrap.css" rel="stylesheet" />
    <script src="js/jquery-1.11.3.js"></script>
    <script src="js/bootstrap.js"></script>
    <script src="js/bootstrap-confirmation.js"></script>
   


初始化

 

 <button type="button" id="btn_submit1" class="btn btn-primary" style="margin: 100px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span>删除</button>



js实现代码

<script type="text/javascript">
    $(function () {
        $('#btn_submit1').confirmation({
            animation: true,
            placement: "top",
            title: "确定要删除吗?",
            btnOkLabel: '确定',
            btnCancelLabel: '取消',
            onConfirm: function () {
                alert("点击了确定");
            },
            onCancel: function () { 
            	alert("点击了取消"); 

            }
        })

    });
    </script>

常用的属性。比如:

  • btnOkClass:确定按钮的样式;
  • btnCancelClass:取消按钮的样式;
  • singleton:是否只允许出现一个确定框;
  • popout:当用户点击其他地方的时候是否隐藏确定框;
  • title:标题;
  • placement:放置位置;
  • onConfirm:确定事件;
  • onCancel:取消事件;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

让程序飞

您的鼓励将是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值