复制代码代码如下:
<html>
<cabeza>
<script idioma="javascript" tipo="texto/javascript">
/** 日期比较 **/
función compararFecha(strFecha1,strFecha2)
{
var fecha1 = nueva Fecha(strDate1.replace(//-/g, "//"));
var fecha2 = nueva fecha(strDate2.replace(//-/g, "//"));
fecha de regreso1-fecha2;
}
/** 比较 **/
función hacerComparar(){
var strDate1 = document.getElementById("strDate1").value;
var strDate2 = document.getElementById("strDate2").value;
var resultado = compareDate(strDate1,strDate2);
si (resultado>0) {
alert("strDate1 y strDate2");
}si no (resultado<0){
alert("strDate1 早于strDate2");
}si no (resultado==0){
alert("strDate1等于strDate2");
}
}
</script>
</cabeza>
<cuerpo>
<tipo de entrada="texto" id="strDate1" nombre="strDate1" valor="2012-07-01"/>
<tipo de entrada="texto" id="strDate2" nombre="strDate2" valor="2012-08-01"/>
<tipo de entrada="botón" id="compareBtn" nombre="compareBtn" valor="比较" onClick="doCompare();"/>
</cuerpo>
</html>