1. JS判断是否为一个有效日期 1 2 3 4 function check(date){ return (new Date(date).getDate()==date.substring(date.length-2)); } //参数date可以格式化为xx-xx-xx或xxxx-xx-xx或用/分割 new Date(date): 如果date为一个无效的变量, 则会返回invalid data getDate():返回日期中的天,如2016-02-11,返回11,假如天数在当前年…
关闭方法其实很简单,Options => Debugging => General => Enable JavaScript debugging for ASP.NET (Chrome and IE),取消勾选即可. 问题是为什么要关闭?其实我基本用不到JS调试功能,而且VS2017自动使用一个新的Profile打开Chrome浏览器,感觉很不爽,自己设置的Chrome特色配置都没了,Bookmark也没了,太不方便!还一个最大的问题,就是一旦停止调试,Chrome立即自动关闭,这点实在…
特殊字符转义:将<, >, &, “进行转义 function escape(str){ return str.replace(/[<>"&]/g,function(match){ switch(match){ case "<": return "<"; case ">": return ">"; case "&": retu…