layer弹窗使用
Posted mg007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layer弹窗使用相关的知识,希望对你有一定的参考价值。
代码&资源文件
1、文件目录
popup.html
2、引入资源文件
<script type="text/javascript" src="./src/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="./layer/layer.js"></script>
3、新页面做弹窗内容
<a class="operation-btn add-btn" href="javascript:void(0)">Add</a>
<script type="text/javascript">
$(function()
$('.add-btn').click(function ()
layer.open(
type: 2,
title: false,
area: ['200px', '250px'],
shade: [0],
content: ['popup.html']
);
);
);
</script>
效果:
4、隐藏div做弹窗内容
<a class="operation-btn add-btn" href="javascript:void(0)">Add</a>
<div id="m-div" style="display: none;">
<span>xxxxxx1</span><br>
<span>xxxxxx2</span><br>
<span>xxxxxx3</span><br>
</div>
<script type="text/javascript">
$(function()
$('.add-btn').click(function ()
layer.open(
type: 1,
title: false,
area: ['300px', '350px'],
shade: [0],
content: $('#m-div')
);
);
);
</script>
效果:
以上是关于layer弹窗使用的主要内容,如果未能解决你的问题,请参考以下文章