2005-10-18 22:50
study
JavaScript
<body><script language="JavaScript">
function showMilitaryTime()
{
if (document.form.showMilitary[0].checked)
{
return true;
}
return false;
}
function showTheHours(theHour)
{
if (showMilitaryTime() || (theHour > 0 && theHour < 13))
{
if (theHour == "0") theHour = 12;
return (theHour);
}
if (theHour == 0)
{
return (12);
}
return (theHour-12);
}
function showZeroFilled(inValue)
{
if (inValue > 9)
{
return "" + inValue;
}
return "0" + inValue;
}
function showAmPm()
{
if (showMilitaryTime())
{
return ("");
}
if (now.getHours() < 12)
{
return (" am");
}
return (" pm");
}
function showTheTime()
{
now = new Date
document.form.showTime.value = showTheHours(now.getHours()) + ":" + showZeroFilled(now.getMinutes()) + ":" + showZeroFilled(now.getSeconds()) + showAmPm()
setTimeout("showTheTime()",1000)
}
</script>
<FORM name=form><INPUT name=showTime size=11>
<P><INPUT CHECKED name=showMilitary type=radio>Military Time<BR><INPUT
name=showMilitary type=radio Unchecked> 12 Hour Time </FORM>
</body>
2005-10-22 20:32
luntan32
so难懂 阿 楼主
2005-10-27 22:34
深蓝
慢慢学,对制作网页有用!
2005-10-27 22:46
深蓝
楼主可以不可以大概翻译下下,偶看不大懂
2005-10-30 19:36
pplight
这个不懂
2005-10-30 22:54
luntan32
看起来和网页制作一样的 复杂
2006-3-28 11:37
hanfeng8848
这个是一干什么的呀??楼主说明一下吧.
2006-3-28 12:51
qifeng1919
谢谢分享\
页:
[1]
Powered by Discuz! Archiver 5.5.0
© 2001-2006 Comsenz Inc.