암호 강도 모니터링
(function($){
$.fn.extend({
pwdstr: function(el) {
return this.each(function() {
$(this).keyup(function(){
$(el).html(getTime($(this).val()));
});
function getTime(str){
var chars = 0;
var rate = 2800000000;
if((/[a-z]/).test(str)) chars += 26;
if((/[A-Z]/).test(str)) chars += 26;
if((/[0-9]/).test(str)) chars += 10;
if((/[^a-zA-Z0-9]/).test(str)) chars += 32;
var pos = Math.pow(chars,str.length);
var s = pos/rate;
var decimalYears = s/(3600*24*365);
var years = Math.floor(decimalYears);
var decimalMonths =(decimalYears-years)*12;
var months = Math.floor(decimalMonths);
var decimalDays = (decimalMonths-months)*30;
var days = Math.floor(decimalDays);
var decimalHours = (decimalDays-days)*24;
var hours = Math.floor(decimalHours);
var decimalMinutes = (decimalHours-hours)*60;
var minutes = Math.floor(decimalMinutes);
var decimalSeconds = (decimalMinutes-minutes)*60;
var seconds = Math.floor(decimalSeconds);
var time = [];
if(years > 0){
if(years == 1)
time.push("1 year, ");
else
time.push(years + " years, ");
}
if(months > 0){
if(months == 1)
time.push("1 month, ");
else
time.push(months + " months, ");
}
if(days > 0){
if(days == 1)
time.push("1 day, ");
else
time.push(days + " days, ");
}
if(hours > 0){
if(hours == 1)
time.push("1 hour, ");
else
time.push(hours + " hours, ");
}
if(minutes > 0){
if(minutes == 1)
time.push("1 minute, ");
else
time.push(minutes + " minutes, ");
}
if(seconds > 0){
if(seconds == 1)
time.push("1 second, ");
else
time.push(seconds + " seconds, ");
}
if(time.length <= 0)
time = "less than one second, ";
else if(time.length == 1)
time = time[0];
else
time = time[0] + time[1];
return time.substring(0,time.length-2);
}
});
}
});
})(jQuery);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.