easyUI使用

来源:http://zzy7182.iteye.com/blog/1271562


easyui如何使用一

 
easyui如何使用一介绍的是accordion、dateBox、dialog、comobobox、messager的使用方法,说的比较肤浅,目前还在学习如何使用过程中。
Java代码   收藏代码
  1. <link rel="stylesheet" type="text/css" href="<%=jsPath %>/jquery-easyui-1.2.3/themes/default/easyui.css">  
  2. <link rel="stylesheet" type="text/css" href="<%=jsPath %>/jquery-easyui-1.2.3/themes/icon.css">  
  3. <script type="text/javascript" src="<%=jsPath %>/jquery-easyui-1.2.3/jquery-1.4.4.min.js"></script>  
  4. <script type="text/javascript" src="<%=jsPath %>/jquery-easyui-1.2.3/jquery.easyui.min.js"></script>  
  5.   
  6. <script type="text/javascript">  
  7.    $(function() {  
  8.         $('#myDiv').accordion( {  
  9.             width : 400,  
  10.             height : 200,  
  11.             fit : false  
  12.         });  
  13.           
  14.         var dateBox = $('#myDateBox').datebox({  
  15.             currentText:'today',  
  16.             closeText:'close',  
  17.             disable:false,  
  18.             required:true,  
  19.             missingMessage:'required',  
  20.             formatter:formatDate,  
  21.             onSelect:function(da){  
  22.               alert("123");  
  23.             }  
  24.         });  
  25.           
  26.       
  27.         function formatDate(date){  
  28.            var returnStr = 'null';  
  29.            if(date instanceof Date){  
  30.              var year = date.getFullYear();  
  31.              var month = date.getMonth()+1;  
  32.              var day = date.getDate();  
  33.              returnStr = year+"年"+month+"月"+day+"日";  
  34.            }  
  35.            return returnStr;  
  36.         }  
  37.           
  38.           
  39.         $('#myDialog').dialog({  
  40.            title:'my Dialog',  
  41.            collapsible:true,  
  42.            minimizale:true,  
  43.            maxmizable:true,  
  44.            resizable:true,  
  45.            width:500,  
  46.            toolbar:[  
  47.                 {  
  48.                      text:'Add',iconCls:'icon-add',handler:function(){  
  49.                         alert('add');  
  50.                      }  
  51.                 },'-',{  
  52.                      text:'Save',iconCls:'icon-save',handler:function(){  
  53.                          alert('save');  
  54.                      }  
  55.                 },'-',{  
  56.                      text:'Ok',iconCls:'icon-ok',handler:function(){  
  57.                          alert('Ok');  
  58.                      }  
  59.                 },'-',{  
  60.                      text:'Cancel',iconCls:'icon-cancel',handler:function(){  
  61.                         $('#myDialog').dialog('close');   
  62.                      }  
  63.                 }  
  64.                   
  65.              
  66.            ],  
  67.           buttons:[{text:'确定',iconCls:'icon-ok'},{text:'关闭',iconCls:'icon-close',handler:function(){  
  68.                         $('#myDialog').dialog('close');  
  69.                    }  
  70.           }  
  71.           ]  
  72.           
  73.         });  
  74.           
  75.     });  
  76.       
  77.       
  78.     $.messager.defaults={ok:'确定',cancel:'取消'};  
  79.   
  80.     function disableDateBox(){  
  81.       $('#myDateBox').datebox('disable');  
  82.     }  
  83.     function enableDateBox(){  
  84.       $('#myDateBox').datebox('enable');  
  85.     }  
  86.       
  87.     function loadData(){  
  88.         
  89.        $('#myCombobox').combobox({  
  90.            url:'combobox_data.json',  
  91.            valueField:'id',  
  92.            textField:'text'  
  93.        });  
  94.     }  
  95.       
  96.     function show(){  
  97.       $.messager.show({  
  98.         title:'show',  
  99.         msg:'you raise me up',  
  100.         showType:'show'  
  101.       });  
  102.     }  
  103.       
  104.     function slide(){  
  105.       $.messager.show({  
  106.          title:'slide',  
  107.          msg:'let you go',  
  108.          timeout:5000,  
  109.          showType:'slide'  
  110.       });  
  111.     }  
  112.       
  113. </script>  
  114. </head>  
  115. <body>  
  116. <!-- accordion -->  
  117.  <div id="myDiv" border="true">  
  118.    
  119.  <!--必须要有title属性,否则不会包含到accordion中去-->  
  120.  <div title="标题一" style="overflow: auto; padding: 10px;">  
  121. <h3 style="color: #0099FF;">Accordion for jQuery</h3>  
  122. <p>Accordion is a part of easyui framework for jQuery. It lets you define your accordion component on web page more easily.</p>  
  123. </div>   
  124. <div title="标题二"  selected="true"  
  125.     style="padding: 10px;">content2</div>  
  126. <div title="标题三">content3</div>  
  127.   
  128. </div>  
  129.   
  130. <div id="myDiv2" class="easyui-accordion" style="width:400px;height:200px;" fit="false">  
  131.   <div title="测试1">123</div>  
  132. </div>  
  133.  <!--end accordion -->  
  134.    
  135.  <!-- datebox -->  
  136.  <div>  
  137.    <a href="#" οnclick="disableDateBox()">disable</a>&nbsp;&nbsp;<a  href="#" οnclick="enableDateBox()">enable</a>  
  138.   <input  id="myDateBox"></input>  
  139.  </div>  
  140. <!-- end datebox -->  
  141.   
  142. <!-- combox -->  
  143. <div>  
  144.    <a href="#" οnclick="loadData()">loadData</a>  
  145.   
  146.     <select id="myCombobox">  
  147.       <option selected="selected">===请选择===</option>  
  148.       <option>苹果</option>  
  149.       <option>橘子</option>  
  150.       <option>梨子</option>  
  151.       <option>香蕉</option>  
  152.     </select>  
  153. </div>  
  154.   
  155. <!--end combobox-->  
  156. <!-- toolbar -->  
  157.   <div id="myDialog"></div>  
  158. <!-- end toolbar -->  
  159.   
  160. <!-- messager -->  
  161.   <div>  
  162.      <a href="#" οnclick="show()">show</a>&nbsp;&nbsp;  
  163.      <a href="#" οnclick="slide()">slide</a>&nbsp;&nbsp;  
  164.       
  165.   </div>  
  166. <!-- end messager -->  
  167. </body> 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值