jQuery技术

前端分页功能的实现以及原理(jQuery)(6)

字号+ 作者:H5之家 来源:H5之家 2018-02-16 15:00 我要评论( )

link href="popShow.css" type="text/css" /script src="/js/common/jquery.min.js" type="text/javascript"/scriptscript src="popShow.js" type="text/javascript"/script 注意:这里需要引入jQuery库文件。 2、

<link href="popShow.css" 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> <table> <tr> <th>用户名</th> <td><input type="text" /></td> </tr> <tr> <th>密码</th> <td><input 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><iframe frameborder="0" scrolling="no"></iframe></div>').appendTo('body'); this.show().attr('par', this.parent().length ? true : false).appendTo('body').wrapAll('<table><tr><td></td></tr></table>'); this.wrapAll('<div></div>').before('<div>' + (title ? title : '') + '</div>').before($('<a href="javascript:;"></a>').click(function() { tag.popHide() })); return this }; $.fn.popHide = function() { var tab = this.closest('table'); this.attr('par') == 'true' ? this.hide().appendTo('body') : this.remove(); tab.prev().remove(); tab.remove(); return this };

附件2:popShow.css

/*弹出层*/ .g-mask, .g-mask iframe, .g-popup { width:100%; height:100%; } .g-mask { background:#fff; filter:alpha(opacity=80); opacity:0.8; } .g-mask iframe { filter:alpha(opacity=0); opacity:0; } .g-mask, .g-popup { position:fixed; top:0; left:0; z-index:10000; _position:absolute; _top:expression(documentElement.scrollTop + "px");} .g-black-mask {background:#000;opacity:0.7;} .g-black-popup{position:absolute;} .g-popup { text-align:center; } .g-popup-wrap { padding:30px; background:#fff; border:#E95A59 solid 4px; text-align:left; position:relative; margin:0 auto; } .g-popup-title { font-size:14px; height:28px; line-height:28px; overflow:hidden; margin-bottom:20px; font-weight:bold; color:#e25150; border-bottom:1px dotted #AAAAAA} .g-popup-hide {background:url("/images/popBtn.png") 0 0 no-repeat; width:34px; height:30px; display:block; position:absolute; right:5px; top:5px; z-index:99; } .g-popup-hide:hover { background-position:0 -40px; } .g-info-hide { width:34px; height:30px; display:block; position:absolute; background-position:0 -1320px; top:5px; right:5px; } .g-info-hide:hover { background-position:0 -1360px; } .g-popup-tip { height: 0; overflow: hidden; position: fixed; z-index:10001; bottom: 0; right: 0; _position: absolute; _bottom: auto; _top: expression(eva l(document.documentElement.scrollTop + document.documentElement.clientHeight - this.offsetHeight - (parseInt(this.currentStyle.marginTop, 10) || 0) - (parseInt(this.currentStyle.marginBottom, 10) || 0)));}

附件3:关闭按钮图标(popBtn.png)

jQuery弹出层插件popShow(改进版)用法示例

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery常用插件及用法总结》、《jquery中Ajax用法总结》、《jQuery表格(table)操作技巧汇总》、《jQuery拖拽特效与技巧总结》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》、《jQuery动画与特效用法总结》及《jquery选择器用法总结》

希望本文所述对大家jQuery程序设计有所帮助。



上一篇:
下一篇:

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • JQuery实战视频教程[完整][基础]

    JQuery实战视频教程[完整][基础]

    2018-03-07 10:10

  • JavaScript 开发的40个经典技巧 前端开发,JQUERY特效,全栈开发

    JavaScript 开发的40个经典技巧 前端开发,JQUERY特效,全栈开发

    2018-02-16 15:00

  • jQuery UI 工作原理

    jQuery UI 工作原理

    2018-02-16 14:02

  • jquery操作复选框(checkbox)的12个小技巧总结 龙生时代

    jquery操作复选框(checkbox)的12个小技巧总结 龙生时代

    2018-02-16 13:10

网友点评