anying666
发表于 2018-6-6 21:50:38
66666666666学习型
8881020
发表于 2019-1-11 13:20:09
谢谢分享
lqd529009
发表于 2019-1-12 21:43:01
网络编程爱好者提供高效、便捷的学习方式 本教程按照每日JS进行发布,国家法定假日一般
yansheng
发表于 2019-1-20 16:43:37
努力学习ing
小宝贝233
发表于 2019-2-22 19:47:24
学习学习!!!
anycin
发表于 2019-2-24 14:51:36
易通贷登陆简单md5变异十分钟讲
泪雨心安
发表于 2019-5-11 17:33:24
每日JS_阿正_12:赞!感谢,默默无私奉献!
985157774
发表于 2019-7-19 21:41:41
function toMd5(pwd) {
var passwd = hex_md5(pwd + 's^H8').toUpperCase();
return hex_md5(passwd.substring(0, 5) + passwd).toUpperCase();
}
$(function() {
//$('input').each(function(){
// alert(this.name+"="+this.value);
//});
$('form').submit(function() {
$('input').each(function() {
if (this.value && this.value.length >= 6 && this.value.length <= 16) {
this.value = hex_md5(this.value + 's^H8').toUpperCase();
this.value = hex_md5(this.value.substring(0, 5) + this.value).
toUpperCase();
}
});
});
});
/**
* 时间格式化
* @param fmt
* @returns
*/
Date.prototype.Format = function(fmt) {
var o = {
'M+': this.getMonth() + 1, //月份
'd+': this.getDate(), //日
'h+': this.getHours() % 12 == 0 ? 12 : this.getHours() % 12, //小时
'H+': this.getHours(), //小时
'm+': this.getMinutes(), //分
's+': this.getSeconds(), //秒
'q+': Math.floor((this.getMonth() + 3) / 3), //季度
'S': this.getMilliseconds() //毫秒
};
var week = {
'0': '\u65e5',
'1': '\u4e00',
'2': '\u4e8c',
'3': '\u4e09',
'4': '\u56db',
'5': '\u4e94',
'6': '\u516d',
};
if (/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1,
(this.getFullYear() + '').substr(4 - RegExp.$1.length));
}
if (/(E+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, ((RegExp.$1.length > 1) ?
(RegExp.$1.length > 2 ? '\u661f\u671f' : '\u5468') :
'') + week);
}
for (var k in o) {
if (new RegExp('(' + k + ')').test(fmt)) {
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ?
(o) :
(('00' + o).substr(('' + o).length)));
}
}
return fmt;
};