摘要: -Xms256m -Xmx512m -XX:MaxNewSize=64m -XX:MaxPermSize=128m 阅读全文
posted @ 2017-12-18 17:47 Janfu 阅读(1247) 评论(0) 推荐(0) 编辑
摘要: Jquery浅克隆与深克隆 JavaScript部分 $("div").on('click', function() {//执行操作}) //clone处理一 $("div").clone() //只克隆了结构,事件丢失 //clone处理二 $("div").clone(true) //结构、事件与数据都克隆 使用上就是这样简单,使用克隆的我们需要额外知道的细节: clone()方法... 阅读全文
posted @ 2017-12-18 17:45 Janfu 阅读(629) 评论(0) 推荐(0) 编辑
摘要: var innerHeight = $(window).innerHeight(); $(".block").height(innerHeight - 190); //设定高度 var Timeobj, //储存定时器 setDate_val=500, //定时器轮播时间 animateDate_val=100; //列表轮播时间 var Fu... 阅读全文
posted @ 2017-12-18 17:43 Janfu 阅读(1359) 评论(0) 推荐(0) 编辑
摘要: overflow: hidden; white-space: nowrap; text-overflow: ellipsis; 阅读全文
posted @ 2017-12-18 17:42 Janfu 阅读(4596) 评论(0) 推荐(0) 编辑
摘要: iframe标签添加: allowTransparency="true"属性。 子文件body背景设置透明: background-color: transparent;。 阅读全文
posted @ 2017-12-18 17:41 Janfu 阅读(732) 评论(2) 推荐(0) 编辑
摘要: .pc-ind-box-l-c-l-con-box::-webkit-scrollbar { width:10px; height:10px; } .pc-ind-box-l-c-l-con-box::-webkit-scrollbar-button { background-color: rgba(0, 0, 0, 0.0); }/*上箭头位置*/ .pc-ind... 阅读全文
posted @ 2017-12-18 17:40 Janfu 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-12-18 17:39 Janfu 阅读(95) 评论(0) 推荐(0) 编辑
摘要: $('body').on('input propertychange', '.info-number-val-box', function(event) { xxxxx }); 阅读全文
posted @ 2017-12-18 17:38 Janfu 阅读(3378) 评论(0) 推荐(0) 编辑
摘要: o=$.extend(initializationInterface.defaultValue,o); o= $.extend({}, initializationInterface.prototype.columnSplitting.defaultValue , o || {}); 阅读全文
posted @ 2017-12-18 17:37 Janfu 阅读(791) 评论(0) 推荐(0) 编辑
摘要: input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset !important; } 阅读全文
posted @ 2017-12-18 17:36 Janfu 阅读(255) 评论(0) 推荐(0) 编辑