基本信息
源码名称:轻量级jQuery对话框插件 jQuery.dialog.js
源码大小:0.01M
文件格式:.js
开发语言:js
更新时间:2016-06-29
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
菜单弹出,弹出图片
菜单弹出,弹出图片
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>轻量级jQuery对话框插件 jQuery.dialog.js </title> <link rel="stylesheet" href="css/jquery.dialog.css"> <script src="js/jquery.js"></script> <script src="js/jquery.dialog.js"></script> <style> .btn{display:block;width:130px;height:40px;background:#3c8dbc;border:0;border-radius:3px;color:#fff;cursor:pointer;margin:30px auto auto;} </style> </head> <body> <button class="btn" id="js_alertPic">弹出一张图片</button> <button class="btn" id="js_alert">Alert</button> <button class="btn" id="js_confirm">Confirm</button> <button class="btn" id="js_prompt">Prompt</button> <button class="btn" id="js_wait">Wait</button> <script> $("#js_alertPic").on("click",function(){ var obj = '<img src="http://www.sucaijiayuan.com/uploads/file/content/2015/12/567ccdd14c121.jpg"/>'; $(obj).dialog({ title : "新年快乐图片", buttons: { "确定":function(){ alert("ok") }, "取消" : function(){ alert("cancel") } }, }); }); $("#js_alert").on("click",function(){ jAlert('www.baidu.com',function(){ alert("确定的回调"); },"素材"); }); $("#js_confirm").on("click",function(){ jConfirm('www.baidu.com',function(){ alert("确定的回调"); },"素材"); }); $("#js_prompt").on("click",function(){ jPrompt('请输入素材网址','http://www.baidu.com',function(event,val){ alert(val); },"素材"); }); $("#js_wait").on("click",function(){ jWait('数据加载中'); }); </script> </body> </html>