为了账号安全,请及时绑定邮箱和手机立即绑定

js实现bootstrap中的modal效果

先增加button按钮的属性id="button",并且假定在没有bootstrap.css的情况下div.modal的opacity="0";

var Show=function(e){

  /*第一步获取body;可以直接用document.body获取,或者下面的方法*/

  this.el=document.getElementById('button');

  this.body=this.el.parentNode;

  /*获取在第三步中要显示的modal*/

  this.el_show=document.getElementById('themodal');

  /*第二步为button添加单击事件(有多种方式)*/

  this.el.addEventListener('click',function(){

    /*第三步创建一个div并设置为.5透明的背景遮罩层,并且显示div.modal*/

    this.el.innerHTML.unshift('<div class="layer" style="width:100%;height:100%;opacity:.5;"></div>').join("");

    this.el_show.style.opacity='1';

  });

};

var show=new Show();

写到这就发现,这时候那个按钮还木有被遮罩层遮住,所以还应该调整下html的排版.....总结bootstrap还是太方便了~


正在回答

1 回答

你这样写太麻烦,且不规范,像BootStrap这样,直接css定义一个fixed的背景遮罩层类,触发的时候添加该类名,关闭则去掉类名。

再者使用jQuery 实现还是非常简单。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

js实现bootstrap中的modal效果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信