欢迎来到代码驿站!

JavaScript代码

当前位置:首页 > 网页前端 > JavaScript代码

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

时间:2020-10-14 10:06:30|栏目:JavaScript代码|点击:

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

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

1、源码地址

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

2、效果展示

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:取消事件;

上一篇:Javascript var变量隐式声明方法

栏    目:JavaScript代码

下一篇:JavaScript判断表单提交时哪个radio按钮被选中的方法

本文标题:bootstrap confirmation按钮提示组件使用详解

本文地址:http://www.codeinn.net/misctech/11252.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有