公司常用

1.主键生成:CcIDUtil.getTimeRandomId(30);

2.日期格式:DateTool.getCurren.   <!--StartFragment -->

格式:yyyyMMddHHmmss
3.ajax:乱码设置:contentType:"application/x-www-form-urlencoded;charset=gbk",
js:encodeURI()
java:URLDecoder.decode(request.getParameter("task_title"),"utf-8");
4.easyui dalog窗设置:
function showDialog1() {
  var top = $(document).scrollTop() + ($(window).height()-180) * 0.5;
  var left = ($(window).width()-360) * 0.5;
  $('#DIALOG_ID1').window('open').window('resize',{width:'360px',height:'200px',top: top,left:left});
  $('#DIALOG_ID1>div>div').css("height","");
 }
5.计算输入框最大长度
 //计算输入框最大长度
 function getStrLength(str) {
  var realLength = 0, len = str.length, charCode = -1;
  for ( var i = 0; i < len; i++) {
   charCode = str.charCodeAt(i);
   if (charCode >= 0 && charCode <= 128) {
    realLength += 1;
   } else {
    realLength += 2;
   }
  }
  return realLength;
 }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值