摘要: 解决办法是监听手机屏幕的高度 阅读全文
posted @ 2017-07-31 14:35 佘楼 阅读(296) 评论(0) 推荐(0) 编辑
摘要: function copy(o){ if(o instanceof Array){ var n = []; for(var i in o){ n[i] = copy(o[i]); } return n; } else if(o instanceof Object){ var n = {}; for( 阅读全文
posted @ 2017-07-17 17:37 佘楼 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 日期格式如果如:"1970-01-01 12:12:12",ios在读取时会报NaN的错误,是因为ios不能识别日期格式中的 "-" ,解决办法: "1970-01-01 12:12:12".replace(/-/g, "/"); 阅读全文
posted @ 2017-07-14 16:13 佘楼 阅读(556) 评论(0) 推荐(0) 编辑
摘要: android上面正常,ios依然会有光标(同样不能输入),解决办法 至于为什么不用 disabled属性,原因是会阻止input内容的提交 阅读全文
posted @ 2017-07-14 16:06 佘楼 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 在回退后需要刷新的页面加以下js 阅读全文
posted @ 2017-07-10 20:56 佘楼 阅读(1454) 评论(0) 推荐(0) 编辑