jquery学习模拟Dialog效果

<!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>效果</title>
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.18.custom.min.js"></script>
    <link type="text/css" href="css/ui-lightness/jquery-ui-1.8.18.custom.css" rel="stylesheet" />
    
    <script type="text/javascript">
    $(function(){
      $("#dialog").dialog({
 autoOpen:false,  //设置对话框打开的方式  不是自动打开
 show:"blind",  //打开时的动画效果
 hide:"explode",  //关闭时的动画效果
 modal:true,       //true遮罩效果  false非遮罩效果
/*  //buttons的第一种方法  
 buttons:{
 //添加按钮的操作
 "确定":function(){
 //alert("提交");
 $(this).dialog("close");  //关闭对话框
 },
 "取消":function(){
 //alert("确定取消吗");
   $(this).dialog("close");  //关闭对话框


 }
 },*/
 //buttons的第二种方法:
buttons:[
 {
 text:"ok",
 click:function(){
 $(this).dialog("close");
 }
 },{text:"取消",
 click:function(){
 $(this).dialog("close");
 }
 }
],
 
 draggable:false,  //true表示可以拖动(默认的),false不可以拖动
 closeOnEscape:false,  //是否采用esc键关闭对话框,false不采用。true采用,为默认的
 title:"添加用户操作界面",  //对话框的标题
 position:"top",   //对话框弹出的位置(top  left  right center bottom 默认值是center)
     width:600,   //对话框的宽度
 height:300,   //对话框的高度
     resizable:false,  //是否可以改变的操作 true可以改变尺寸,默认值为true
 zIndex:6,

 });  
//触发连接的事件 当你点击时 连接 打开一个对话
 $("#dialog_link").click(function(){
         $("#dialog").dialog("open");  //open参数 作业 打开对话框
 });
 
    });
    </script>
    
    <style>
    
    
    
    
    </style>
    
</head>


<body>
<h1>模拟Dialog效果</h1>


<a href="#" id="dialog_link"><span class="ui-icon ui-icon-newwin"></span>open Dailog</a>


<!--div对话框 $$("#dialog").dialog("open"); 他就成了一个对话框 在页面终究会隐藏-->


<div id="dialog" title="hi!"> 
hello!


</div>




</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值