jquery实现点击弹出可放大居中及关闭的对话框(附demo源码下载)
更新时间:2016年05月10日 11:37:01 投稿:shichen2014
这篇文章主要介绍了jquery实现点击弹出可放大居中及关闭的对话框,具有可拖动、放大、居中及关闭等功能,提供了2种对话框模式供读者选择,并附带demo源码供读者下载参考,需要的朋友可以参考下
本文实例讲述了jquery点击弹出可放大居中关闭对话框。分享给大家供大家参考,具体如下:
运行效果截图如下:
具体代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jquery点击弹出可放大居中关闭对话框</title> <link rel="stylesheet" type="text/css" href="css/jqpopup.css"/> <script type="text/javascript" src="js/jquery-1.3.2.min.js"></script> <script type="text/javascript" src="js/jquery.bgiframe.min.js"></script> <script type="text/javascript" src="js/jqDnR.min.js"></script> <script type="text/javascript" src="js/jquery.jqpopup.min.js"></script> </head> <body> <div id="sampleformdiv" style="display:none" title="1st jQpopup box"> <div class="annotationName">描述</div> <div class="annotation">点击关闭该弹出窗口</div> </div> <div id="sampleformdiv1" style="display:none" title="模块选择器"> <form method="post" id="butt" name="butt" action=""> <input type="button" value="确定"/> <input type="button" value="取消"/> </form> <div class="sele"> <select class="u"> <option value="CMS">CMS</option> <option value="General" selected="">General</option> <option value="Else">Else</option> </select> <select class="u"> <option value="CMS">CMS</option> <option value="General" selected="">General</option> <option value="Else">Else</option> </select> <select class="u"> <option value="CMS">CMS</option> <option value="General" selected="">General</option> <option value="Else">Else</option> </select> </div> <table border="1" cellpadding="2" cellspacing="2"> <tr> <td></td> <td>名称</td> <td>标签</td> <td>前缀</td> <td>...</td> </tr> <tr> <td><input type="radio" value="radio" name="r1" id="r1"></td> <td>分类控件</td> <td>2</td> <td>re</td> <td>222</td> </tr> <tr> <td><input type="radio" value="radio" name="r2" id="r2"></td> <td>分类控件</td> <td>2</td> <td>re</td> <td>222</td> </tr> <tr> <td><input type="radio" value="radio" name="r3" id="r3"></td> <td>分类控件</td> <td>2</td> <td>re</td> <td>222</td> </tr> <tr> <td><input type="radio" value="radio" name="r4" id="r4"></td> <td>分类控件</td> <td>2</td> <td>re</td> <td>222</td> </tr> <tr> <td><input type="radio" value="radio" name="r5" id="r5"></td> <td>分类控件</td> <td>2</td> <td>re</td> <td>222</td> </tr> </table> </div> <p><input type="button" class="stdbtn" id="open_btn" value="Click 1"/></p><br/> <p><input type="button" class="stdbtn" id="open_btn1" value="Click 2"/></p><br/> <script type="text/javascript"> $(document).ready(function(){ $("#open_btn").click(function(){ $("#sampleformdiv").jqpopup_open(this.id); }); $("#open_btn1").click(function(){ $("#sampleformdiv1").jqpopup_open(this.id); }); }); </script> <div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';"> <p>适用浏览器:IE8、360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗.</p> </div> </body> </html>
完整实例代码点击此处本站下载。
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery切换特效与技巧总结》、《jQuery拖拽特效与技巧总结》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》、《jQuery动画与特效用法总结》、《jquery选择器用法总结》及《jQuery常用插件及用法总结》
希望本文所述对大家jQuery程序设计有所帮助。
您可能感兴趣的文章:
- jQuery代码实现对话框右上角菜单带关闭×
- 基于jQuery实现带动画效果超炫酷的弹出对话框(附源码下载)
- jQuery实现时尚漂亮的弹出式对话框实例
- jquery插件hiAlert实现网页对话框美化
- JQuery弹出炫丽对话框的同时让背景变灰色
- jQuery实现单击按钮遮罩弹出对话框(仿天猫的删除对话框)
- Jquery EasyUI中弹出确认对话框以及加载效果示例代码
- jquery删除提示框弹出是否删除对话框
- jQuery Mobile的loading对话框显示/隐藏方法分享
- JQuery制作的放大效果的popup对话框(未添加任何jquery plugin)分享
- Jquery实现页面加载时弹出对话框代码
- 6款经典实用的jQuery小插件及源码(对话框/提示工具等等)
- jQuery Dialog对话框事件用法实例分析
最新评论