<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body> </body> </html> <script> var N =prompt(‘请输入年‘) if(N!=null){ var b =isNaN(N) if(b==false) { if(N>0&&N<10000&&N%1==0) { var Y =prompt(‘请输入月‘) if(Y!=null) { var b1=isNaN(Y) if(b1==false) { if(Y>0&&Y<13&&Y%1==0) { var R=prompt(‘请输入日‘) if(R!=null) { var f =isNaN(R) if(f==false) { if(R>0&&R<32&&R%1==0) { if(Y==1||Y==3||Y==5||Y==7||Y==8||Y==10||Y==12) { alert(N+‘年‘+Y+‘月‘+R+‘日‘) } } if(R>0&&R<31&&R%1==0) { if(Y==4||Y==6||Y==9||Y==11) { alert(N+‘年‘+Y+‘月‘+R+‘日‘) } } else(alert(‘输入有误‘)) } if(Y==2) {if(N%4==0&&N%100!==0||N%400==0) { alert(N+‘年‘+Y+‘月‘+R+‘日‘) } else if(R>0&&R<29&&R%1==0) { alert(N+‘年‘+Y+‘月‘+R+‘日‘) } else(alert(‘输入有误‘)) } } } else(alert(‘输入有误‘)) } else(alert(‘输入有误‘)) } } else(alert(‘输入有误‘)) } else(alert(‘输入有误‘)) } </script>
时间: 2024-10-25 09:53:05