摘要:
layer 1.8.5官方网址:http://layer.layui.com/1.8.5/API网址:http://layer.layui.com/1.8.5/api.html 阅读全文
摘要:
两种实现方式 1.splice 删除元素并添加新元素,直接对数组进行修改,返回含有被删除元素的数组。 arrayObject.splice(index,howmany,element1,.....,elementX) index:必选,规定从何处添加/删除元素。 howmany:必选,规定应该删除多 阅读全文
摘要:
datagrid中,显示undefined的解决方法在get函数中,将为null的值返回空的字符串 1 public class TestModel { 2 3 private String keynumber; 4 5 public String getKeynumber() ... 阅读全文
摘要:
function getAutoHeight() { var height = $("body").height() - $('#toolbar_title').height() - 12; return height; } $(window).resize(function() { height 阅读全文
摘要:
锁表查询SQL SELECT object_name, machine, s.sid, s.serial# FROM gv$locked_object l, dba_objects o, gv$session s WHERE l.object_id = o.object_id AND l.sessi 阅读全文
摘要:
获取执行方法所在函数的相关信息 1.获取当前函数名: Thread.currentThread().getStackTrace()[1].getMethodName(); 2.获取当前类名: Thread.currentThread().getStackTrace()[1].getClassName 阅读全文