`
soft901
  • 浏览: 36367 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

页面提交时,防止重复提交,创建遮盖层

阅读更多
function wait() {
	var div = document.createElement("DIV");
	div.id = "UnderLay";
	div.name = "UnderLay";
 	//div1.style.width=screen.width;
  	//div1.style.height=screen.height;
 	document.body.appendChild(div);
 	// hide
 	div.style.display = "none";
 	div.onfocus = function(){}
 	div.onclick = function(){}
  	 	
	div.style.display = "";
}




#UnderLay {
	position: absolute;
	width: 110%;
	height: 110%;
	cursor: wait;
	bottom: 0;
	right: 0;
	z-index: 500; /* dessus les popups */
	background: white;
	filter: alpha(opacity=50);
	opacity: .5;	
}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics