源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

bootstrap confirmation按钮提示组件使用详解

  • 时间:2021-07-17 16:38 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:bootstrap confirmation按钮提示组件使用详解
bootstrap-confirmation按钮提示组件,它类似于js里面confirm的功能,界面更加美观。 介绍这个组件之前,可以先来看看bootstrap里面提示框的效果: [img]http://files.jb51.net/file_images/article/201708/2017082211374219.png[/img] 1、源码地址 [url=http://ethaizone.github.io/Bootstrap-Confirmation/]http://ethaizone.github.io/Bootstrap-Confirmation/[/url] 2、效果展示 [img]http://files.jb51.net/file_images/article/201708/2017082211374220.png[/img] 3、代码示例 所需引入的js和css
<link href="css/bootstrap.css" rel="external nofollow" 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:取消事件; 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程素材网。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部