苹果手机Safri浏览器 js 解析问题
低系统版本的苹果手机的浏览器存在很多JS问题
一 date 问题
1.new Date() {至少10.3版本已下存在这个问题}
苹果手机只能识别 new Date('2017/04/12') 这样格式的日期 “2017-04-27”或者“2016.04.15”这样的都不能识别
甚至 8.3系统 '2017/4/12'这样都不能识别
2.new Date().toLocaleDateString() {至少8.3以下存在问题,10.1以后正常}
低版本 苹果手机new Date().toLocaleDateString() 会得到 2017年5月28日 这样的结果
二 Jquery 事件绑定
1. $(document).on("click", ".discountPart .discountRow ", function () {});
这种方法适用于动态生成的discountPart 类下的 discountRow 类的控件;
但是对已safri浏览器却不能适用,解决办法是在 discountRow 这个类的CSS中加入 cursor:pointer;