博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery_EasyUI使用细节注意
阅读量:5330 次
发布时间:2019-06-14

本文共 5475 字,大约阅读时间需要 18 分钟。

一、属性key不加双引号,value加双引号,对于url的value,添加‘’单引号;url的访问地址可以使用以下格式:

datagrid中的url格式:

var datagrid;    $(function(){        datagrid = $('#datagrid').datagrid({            url : '<%= request.getContextPath()%>/userController/list.do',            toolbar : '#toolbar',            title : '用户列表',            iconCls : '',            pagination : true,            pageSize : 10,            pageList : [ 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 ],            fit : true,            fitColumns : true,            nowrap : false,            border : false,            idField : 'id',            columns:[[                      {                          title:'编号',                          field:'id',                          width:100,                          sortable:true                      },                                            {                          title:'姓名',                          field:'name',                          width:100,                          sortable:true                      },                                            {                          title:'密码',                          field:'password',                          width:100,                      },                                            {                          title:'年龄',                          field:'age',                          width:100,                          sortable:true                      },                                            {                          title:'地址',                          field:'address',                          width:100,                      },                                            {                          title:'学历',                          field:'education',                          width:100,                      },                                            {                          title:'身份证号',                          field:'identity',                          width:100,                      },                      {                          title:'手机',                          field:'phon',                          width:100,                      },                                            {                          title:'单位名称',                          field:'unitname',                          width:100,                      },                                            {                          title:'单位地址',                          field:'unitaddress',                          width:100,                      },                                            {                          title:'注册时间',                          field:'createDate',                          width:100,                      },                                            {                          title:'状态',                          field:'status',                          width:100,                      },                                            {                          title:'上次修改时间',                          field:'modificationTime',                          width:100,                      },                                            {                          title:'上传文件',                          field:'uploadFile',                          width:100,                      },                                            {                          title:'ip',                          field:'ip',                          width:100,                      }                      ]],                      toolbar:[                      {                          text:'增加',                          iconCls:'icon-add',                          handler:function(){                                                          }                      },'-',                      {                          text:'删除',                          iconCls:'icon-remove',                          handler:function(){                                                          }                      },                      '-',                      {                          text:'修改',                          iconCls:'icon-edit',                          handler:function(){                                                          }                      },                      '-',                      {                          text:'查询',                          iconCls:'icon-search',                          handler:function(){                                                          }                      }                      ]        });    });

easyui的tree需要的添加json格式的变量中的url的格式:

var treeData=[{                id: "dispatchingManagement",                text: "调度管理",                state: "closed",                children: [{                    id: "taskcenter",                    text: "任务中心",                    attributes : {                          url:''                       }                }, {                    id: "programmeApproval",                    text: "方案审批",                    attributes : {                          url:""                      }                }]            }, {                text: "用户管理",                state: "closed",                children: [{                    id: "yhgl",                    text: "用户管理",                    attributes: {                          url : ''                      }                  }]            }];

二、url访问注意地址跳转否?若跳转后报$ is not defind等问题,那就在跳转后的界面添加需要引入的文件

 

转载于:https://www.cnblogs.com/YLQBL/p/7600911.html

你可能感兴趣的文章
(25)Teach girls bravery, not perfection
查看>>
一些常用的标签丨直接代码
查看>>
实验四(数组)
查看>>
函数之装饰器
查看>>
spring + redis 实现数据的缓存
查看>>
How to change @INC to find Perl modules in non-standard locations
查看>>
io与nio的区别
查看>>
Light OJ 1116
查看>>
跟着iMX28x开发套件学linux-05
查看>>
RHEL 5 安装gcc
查看>>
building tool
查看>>
spring配置文件没有错,但是出现红叉的解决方法
查看>>
设计模式 ( 十六 ) 观察者模式Observer(对象行为型)
查看>>
Ubuntu16.04安装MySQLdb
查看>>
《分布式系统原理与范型》习题答案 4.命名
查看>>
接口和抽象类有什么区别
查看>>
犯犯错
查看>>
新硬盘挂载目录后文件消失解决办法
查看>>
Qt 5.2 Creator 和 vs2012 QT 插件的安装
查看>>
Ambiguous reference to member 'dataTask(with:completionHandle:)'错误
查看>>