我有以下代码,我似乎无法弄清楚它为什么不起作用。
JS 小提琴:http: //jsfiddle.net/EQHRV/
JavaScript:
function hourmin() {
if (document.getElementById('hourmin').checked == 1){
document.getElementById('total').value = "01:00";
}else{
document.getElementById('total').value = "00:00";
}
}
HTML:
<p>Total Time: <BR><input type="text" style="width:95%;" id="total" name="total" value="" readonly="readonly"/>
<input type="checkbox" id="hourmin" name="hourmin" onclick="hourmin();">Pay Hour Minimum?