jQuery弹出层插件弹出层插件popShow(改进版改进版)用法示例用法示例
本文实例讲述了jQuery弹出层插件popShow(改进版)用法。分享给大家供大家参考,具体如下:
前面一篇《jQuery弹出层插件popShow用法示例》分析了popShow插件的基本用法,这里再对插件进行一番改进。
popShow弹出层
图1.1 弹出层效果
1、引入、引入JS和和CSS文件文件
<link href="popShow.css" rel="stylesheet" type="text/css" />
<script src="/js/common/jquery.min.js" type="text/javascript"></script>
<script src="popShow.js" type="text/javascript"></script>
注意:这里需要引入jQuery库文件。
2、编写、编写HTML代码代码
<div id="swinLogin" style="width:230px; display:none;">
<table>
<tr>
<th>用户名</th>
<td><input id="txtUserName" type="text" /></td>
</tr>
<tr>
<th>密码</th>
<td><input id="txtPsw" type="password" /></td>
</tr>
<tr>
<th></th>
<td><input type="button" value="登录" /></td>
</tr>
</table>
</div>
3、、popShow的使用的使用
(1) 打开弹出层
$("#swinLogin").popShow("用户登录");
(2) 关闭弹出层
$("#swinLogin").popHide();
附件附件
附件1:popShow.js
$.fn.popShow = function(title) {
var tag = this;
$('<div class=\"g-mask\"><iframe frameborder=\"0\" scrolling=\"no\"></iframe></div>').appendTo('body');
this.show().attr('par', this.parent().length ? true : false).appendTo('body').wrapAll('<table class=\"g-popup\"><tr><td></td></tr></table>');
this.wrapAll('<div class=\"g-popup-wrap\" style=\"width:' + this.outerWidth(true) + 'px\"></div>').before('<div class=\"g-popup-title g-line-dashed\">' + (title
? title : '') + '</div>').before($('<a class=\"g-popup-hide\" href=\"javascript:;\"></a>').click(function() {
评论0
最新资源