摘要: 1 2 3 4 序号 5 6 7 8 9 10 11 1 $(document).ready(function(){ 2 var table = ... 阅读全文
posted @ 2017-01-06 15:34 suruozhong 阅读(5194) 评论(0) 推荐(0) 编辑
摘要: function formToJson(){ var data = $("#form").serialize(); data= decodeURIComponent(data,true);//防止中文乱码 data = data.replace(/&/g, "','" ); data = data.replace(/=/g, "':'" ); dat... 阅读全文
posted @ 2017-01-06 15:24 suruozhong 阅读(2809) 评论(0) 推荐(0) 编辑
摘要: DataTables格式化渲染加上的html代码按一般方式绑定事件可能会没效果,通过以下方式可以解决 选中行事件 阅读全文
posted @ 2017-01-06 15:20 suruozhong 阅读(1124) 评论(0) 推荐(0) 编辑
摘要: 1 Cookie cookie = new Cookie("username",username); 2 cookie.setMaxAge(60 * 60 * 24 * 365 * 2);//设置cookie保存时间 3 cookie.setPath("/");//cookie有效路径是网站根目录 4 con.getResponse().addCookie(cookie);//向客户端写入coo... 阅读全文
posted @ 2017-01-06 11:13 suruozhong 阅读(333) 评论(0) 推荐(0) 编辑