js如何获取证件号的出生日期

js如何获取证件号的出生日期,第1张

<input id="IDcard" type="text">

<input id="birthDay" type="text">

<script type="text/javascript">

$("#IDcard")bind("blur",function(){

var content=$("#IDcard")val();

if(contentlength!=18){

alert("invalid id card number!");

//可能需要加上对内容的验证,具体得参考身份z号码规则,在此不列出

}else{

$("#birthDay")val(contentslice(6,13));

}

});

</script>

todayDate = new Date();

date = todayDategetDate();

month= todayDategetMonth() +1;

year= todayDategetYear();

documentwrite("今天是")

documentwrite("<br>")

if(navigatorappName == "Netscape")

{

documentwrite(1900+year);

documentwrite("年");

documentwrite(month);

documentwrite("月");

documentwrite(date);

documentwrite("日");

documentwrite("<br>")

}

if(navigatorappVersionindexOf("MSIE") != -1)

{

documentwrite(year);

documentwrite("年");

documentwrite(month);

documentwrite("月");

documentwrite(date);

documentwrite("日");

}

if (todayDategetDay() == 5) documentwrite("星期五")

if (todayDategetDay() == 6) documentwrite("星期六")

if (todayDategetDay() == 0) documentwrite("星期日")

if (todayDategetDay() == 1) documentwrite("星期一")

if (todayDategetDay() == 2) documentwrite("星期二")

if (todayDategetDay() == 3) documentwrite("星期三")

if (todayDategetDay() == 4) documentwrite("星期四")

时间戳改时间,简单点 alert((new Date("1412849746"))toLocaleDateString())

datesetDate(dategetDate() + 60);//这里的60就是你要加的天数,减也可以。年、月会相应加上去,值得注意的是dategetMonth()得到的月份比实际月份小1,所以实际月份是(dategetMonth()+1)

它的getMilliSeconds也是获取当前时间的毫秒数。所以我们需要自己做一个转换。 可以用getMinutes和getSeconds先获取到相应的分和秒,然后将分601000+秒 1000即可转换了。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 40 Transitional//EN">

<HTML>

<HEAD>

<TITLE> New Document </TITLE>

<META NAME="Generator" CONTENT="EditPlus">

<META NAME="Author" CONTENT="">

<META NAME="Keywords" CONTENT="">

<META NAME="Description" CONTENT="">

</HEAD>

<BODY>

<SCRIPT language=JavaScript>

function Year_Month(){

var now = new Date();

var yy = nowgetYear();

var mm = nowgetMonth()+1;

var cl = '<font color="#333333">';

if (nowgetDay() == 0) cl = '<font color="#333333">';

if (nowgetDay() == 6) cl = '<font color="#333333">';

return(cl + yy + '年' + mm + '月</font>'); }

function Date_of_Today(){

var now = new Date();

var cl = '<font color="#ff0000">';

if (nowgetDay() == 0) cl = '<font color="#333333">';

if (nowgetDay() == 6) cl = '<font color="#333333">';

return(cl + nowgetDate() + '</font>'); }

function Day_of_Today(){

var day = new Array();

day[0] = "星期日";

day[1] = "星期一";

day[2] = "星期二";

day[3] = "星期三";

day[4] = "星期四";

day[5] = "星期五";

day[6] = "星期六";

var now = new Date();

var cl = '<font color="#333333">';

if (nowgetDay() == 0) cl = '<font color="#333333">';

if (nowgetDay() == 6) cl = '<font color="#333333">';

return(cl + day[nowgetDay()] + '</font>'); }

function CurentTime(){

var now = new Date();

var hh = nowgetHours();

var mm = nowgetMinutes();

var ss = nowgetTime() % 60000;

ss = (ss - (ss % 1000)) / 1000;

var clock = hh+':';

if (mm < 10) clock += '0';

clock += mm+':';

if (ss < 10) clock += '0';

clock += ss;

return(clock); }

function refreshCalendarClock(){

documentallcalendarClock1innerHTML = Year_Month();

documentallcalendarClock2innerHTML = Date_of_Today();

documentallcalendarClock3innerHTML = Day_of_Today();

documentallcalendarClock4innerHTML = CurentTime(); }

var webUrl = webUrl;

documentwrite('<table border="0" cellpadding="0" cellspacing="0"><tr><td>');

documentwrite('<table id="CalendarClockFreeCode" border="0" cellpadding="0" cellspacing="0" width="60" height="70" ');

documentwrite('style="position:absolute;visibility:hidden" bgcolor="#eeeeee">');

documentwrite('<tr><td align="center"><font ');

documentwrite('style="cursor:hand;color:#ff0000;font-family:宋体;font-size:14pt;line-height:120%" ');

if (webUrl != 'netflower'){

documentwrite('</td></tr><tr><td align="center"><font ');

documentwrite('style="cursor:hand;color:#2000ff;font-family:宋体;font-size:9pt;line-height:110%" ');

}

documentwrite('</td></tr></table>');

documentwrite('<table border="0" cellpadding="0" cellspacing="0" width="61" height="70">');

documentwrite('<tr><td valign="top" width="100%" height="100%">');

documentwrite('<table border="0" cellpadding="0" cellspacing="0" width="58" height="67">');

documentwrite('<tr><td align="center" width="100%" height="100%" >');

documentwrite('<font id="calendarClock1" style="font-family:宋体;font-size:9pt;line-height:120%"> </font><br>');

documentwrite('<font id="calendarClock2" style="color:#333333;font-family:Arial;font-size:14pt;line-height:120%"> </font><br>');

documentwrite('<font id="calendarClock3" style="color:#333333;font-family:宋体;font-size:9pt;line-height:120%"> </font><br>');

documentwrite('<font id="calendarClock4" style="color:#333333;font-family:宋体;font-size:9pt;line-height:120%"><b> </b></font>');

documentwrite('</td></tr></table>');

documentwrite('</td></tr></table>');

documentwrite('</td></tr></table>');

setInterval('refreshCalendarClock()',1000);

</SCRIPT>

</BODY>

</HTML>

获取 日期 时间 星期几

var d = new Date();

var datestr = "今天是: " +dgetFullYear() + "-" +(dgetMonth()+1) + "-" + dgetDate() + " " + dgetHours() + ":" + dgetMinutes() + ":" + dgetSeconds() + " 星期"+"日一二三四五六"charAt(dgetDay())

// 判断闰年

DateprototypeisLeapYear = function()

{

return (0==thisgetYear()%4&&((thisgetYear()%100!=0)||(thisgetYear()%400==0)));

}

// 日期格式化

// 格式 YYYY/yyyy/YY/yy 表示年份

// MM/M 月份

// W/w 星期

// dd/DD/d/D 日期

// hh/HH/h/H 时间

// mm/m 分钟

// ss/SS/s/S 秒

//---------------------------------------------------

DateprototypeFormat = function(formatStr)

{

var str = formatStr;

var Week = ['日','一','二','三','四','五','六'];

str=strreplace(/yyyy|YYYY/,thisgetFullYear());

str=strreplace(/yy|YY/,(thisgetYear() % 100)>9 (thisgetYear() % 100)toString():'0' + (thisgetYear() % 100));

<script type="text/javascript">

var today = new Date();

var day = todaygetDate();//日

var month =todaygetMonth();//月

var year = todaygetYear();//年

if(year<1000)//年分兼容火狐 需要这么判断一下

{

year+=1900;

}

//剩下的赋值问题就很简单了。自己搞吧

</script>

以上就是关于js如何获取证件号的出生日期全部的内容,包括:js如何获取证件号的出生日期、怎样用js根据当前星期几获取日期的、js如何获得系统时间年月日时分秒等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10215778.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-06
下一篇 2023-05-06

发表评论

登录后才能评论

评论列表(0条)

保存