05 2020 档案
摘要:String.prototype.MD5 = function (bit) { var sMessage = this; function RotateLeft(lValue, iShiftBits) { return (lValue << iShiftBits) | (lValue >>> (32
阅读全文
摘要:在输入input时会提示原来输入过的内容,还会出现下拉的历史记录,禁止这种情况只需在input中加入:autocomplete=“off” <input type="text" autocomplete="off" /> autocomplete 属性是用来规定输入字段是否启用自动完成的功能。 补充
阅读全文
摘要:1、<< 左移操作符: 左移操作符,将第一个操作数向左移动第二个操作数指定的位数,空出的位置补0。左移相当于乘. 左移一位相当于乘2;左移两位相当于乘4;左移三位相当于乘8。 如:x<<1= x*2x<<2= x*4x<<3= x*8x<<4= x*16 2、>> 右移操作符: 右移位运算符(>>)
阅读全文
摘要:string sql = string.Format(@"insert into Table(FileSize,FileType,FilePath,FileExtName,OldFileName,NewFileName,FileHash,CreateTime,DeleteFlag) values(@
阅读全文
摘要://写cookies function setCookie(name, value) { var Days = 30; var exp = new Date(); exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000); document.co
阅读全文

浙公网安备 33010602011771号