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还是太方便了~