81,122
社区成员




<body>
<form name='hackerTest'>
<input type="button" name="b1" value="Start Count" id="start"/>
<input id="t" type="text" value=""/>
<input type="button" name="b2" value="Stop Count" onclick="stop()"/>
</form>
<script>
for each (tempObj in document.hackerTest.elements){
tempObj.disabled=true;
}
</script>
</body>