摘要: closest()定义在jquery中,不能在原生的js中使用 解决方法:将this.closest()换成$(this).closest()即可 阅读全文
posted @ 2017-06-09 10:00 blogging 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: if (!Number.isInteger) { Number.isInteger = function(num) { return typeof num == "number" && num % 1 == 0; };} 阅读全文
posted @ 2017-06-09 09:50 blogging 阅读(798) 评论(0) 推荐(0) 编辑