摘要:
1 // 批量删除功能 2 // 1.得到table选中行内容 3 // 2.得到删除需要的唯一值,一般是id; 4 // 3.将所要删除的项加入到数组中; 5 // 4.判断是否选中; 6 // 5.发送ajax请求,并附带参数id; 7 var $=layui.$,active={ 8 deLink:... 阅读全文
摘要:
1 暂停和中止按钮功能 2 if (obj.event === 'del') { 3 layer.confirm('确认中止么', function (index) { 4 $.ajax({ 5 type: "post", 6 u... 阅读全文
摘要:
1 脚本语言:设定默认值;直接拼接,然后根据返回值渲染select// 动态渲染脚本类型下拉框 2 // 1.发送ajax请求得到data 3 // 2.将data渲染到页面上 4 function getDataList() { 5 // 请求 6 $.ajax({ 7 ... 阅读全文
摘要:
1 $('#searchBtn').on('click',function(){ 2 var type = $(this).data('type'); 3 active[type] ? active[type].call(this) : ''; 4 }); 5 // 点击获取数据 6 var active ... 阅读全文
摘要:
1 实例一: 2 { field: 'status', align: 'center', title: '活动状态', templet: function (d) { 4 if (d.status == "1") { 5 return "已发布";... 阅读全文
摘要:
1 !-- 屏幕锁屏 --> 2 3 4 5 6 7 admin 8 9 10 11 12 ... 阅读全文
摘要:
1 阅读全文
摘要:
1 // 登出系统 2 $('#logout').on('click',function(){ 3 var url ='/index.html'; 4 common.logOut('退出登录提示!','你真的确定要退出系统吗?',url); 5 }); 阅读全文
摘要:
1 2 主题选择 3 4 10 11 1 阅读全文
摘要:
//清除缓存 $('#clearCached').on('click', function () { larryTab.cleanCached(); layer.alert('缓存清除完成!本地存储数据也清理成功!', { icon: 1, title: '系统提示' }, function () { location.re... 阅读全文
摘要:
1 阅读全文
摘要:
1 // 页面禁止双击选中 2 $('body').bind("selectstart", function() {return false;}); 阅读全文
摘要:
1 //html代码 2 3 4 用户名: 5 6 7 8 密码: 9 10 11 ... 阅读全文
摘要:
1 url:'/randowCode?t='+Math.random(); 2 //当给某个赋值可以: 3 $('#change').click(function(){ 4 $("#codeimage").attr('src','/randomCode?t='+Math.random()) 5 }) 1 //跟踪操作流程图的layer打开及参数传递 2... 阅读全文