|
楼主 |
发表于 2013-3-27 17:29:48
|
显示全部楼层
来自 中国–北京–北京
easyloader的使用
View Code
复制代码
1 <head>
2 <title>EasyLoader使用方法</title>
3 <script src="jquery-easyui-1.3.2/jquery-1.8.0.min.js" type="text/javascript"></script>
4 <script src="jquery-easyui-1.3.2/easyloader.js" type="text/javascript"></script>
5 <script type="text/javascript">
6 $(function () {
7 // EasyLoader第二种使用方式: 还是加载延迟
8 easyloader.load('dialog', function () {
9 $("#Div1").dialog({
10 width: 400,
11 height: 200,
12 modal: true,
13 title: "我的第二个Dialog!",
14 iconCls: 'icon-save'//easyui图片样式
15 });
16 });
17
18 // EasyLoader第三种使用方式: 还是加载延迟
19 using('dialog', function () {
20 $("#Div1").dialog({
21 width: 400,
22 height: 200,
23 modal: true,
24 title: "我的第二个Dialog!",
25 iconCls: 'icon-save'//easyui图片样式
26 });
27 });
28
29 // EasyLoader第四种使用方式: 加载延迟更为严重了
30 // 定义多个框架,以数组形式添加
31 easyloader.load(['dialog', 'messager'], function () {
32 $("#Div1").dialog({
33 width: 400,
34 height: 200,
35 modal: true,
36 title: "我的第二个Dialog!",
37 iconCls: 'icon-save'//easyui图片样式
38 });
39 $.messager.alert('Title', 'load ok');
40 });
41 });
42 </script>
43 </head>
44 <body>
45 <!--EasyLoader第一种使用方式:
46 直接引入JQuery包和easyloader的js包;有人说这种方式很方便,流量少,但是我使用时发现有些许延迟;-->
47 <div id="dd" class="easyui-dialog" title="我的第三个Dialog" style="width: 400px; height: 200px;"
48 data-options="iconCls:'icon-save',resizable:true,modal:true">
49 我的第一个Dialog。
50 </div>
51 <div id="Div1">
52 我的第一个Dialog。
53 </div>
54 </body>
55 </html> |
|