首页 » 技术分享 » 进入网页就自动弹出层

进入网页就自动弹出层

 
<script>
;!function(){


//页面一打开就执行,放入ready是为了layer所需配件(css、扩展模块)加载完毕
layer.ready(function(){ 
  layer.open({
    type: 2,
    title: '欢迎页',
    maxmin: true,
    area: ['800px', '500px'],
    content: 'http://layer.layui.com/test/welcome.html',
    end: function(){
      layer.tips('Hi', '#about', {tips: 1})
    }
  });
});

//关于
$('#about').on('click', function(){
  //layer.alert(layer.v + ' - 贤心出品 sentsin.com');
  			var id = $(this).attr("lay-id");
			layer.ready(function(){ 
			  layer.open({
				type: 2,
				title: '查看用户',
				maxmin: true,
				area: ['980px', '700px'],
				content: '07.php?id='+id,
				end: function(){
				  self.location='071.php'; 
				}
			  });
			});
});

}();
</script>

转载自原文链接, 如需删除请联系管理员。

原文链接:进入网页就自动弹出层,转载请注明来源!

0