

1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5 <title>Insert title here</title>
6 <script type="text/javascript" src="jquery-1.7.1.min.js"></script>
7 <script type="text/javascript" src="layer.min.js"></script>
8
9 </head>
10 <body>
11 <input type="button" class="testBtn" value="click me">
12 <script type="text/javascript">
13 /*layer.alert('白菜级别前端攻城师贤心', 1);*/
14 /*layer.confirm('白菜级别前端攻城师贤心', 8);*/
15 /*layer.load('加载中……',4);*/
16 /*$.layer({
17 shade : [0], //不显示遮罩
18 area : ['auto','auto'],
19 dialog : {
20 msg:'您是如何看待前端开发?',
21 btns : 2,
22 type : 4,
23 btn : ['重要','奇葩'],
24 yes : function(){
25 //layer.msg('您选择了重要。',2,1);
26 layer.closeAll();
27 },
28 no : function(){
29 layer.msg('奇葩!!!',2,4);
30 }
31 }
32 });*/
33 $('.testBtn').on('click',function(){
34 layer.tips('tips的样式并非是固定的,您可自定义外观。', this, {
35 style: ['background-color:#E227C7; color:#fff', '#E227C7'],
36 maxWidth:185,
37 closeBtn:[0,true] //显示关闭按钮
38 });
39 })
40
41 </script>
42 </body>
43 </html>

