<html>
<head>
<script language="javascript">
function checkValid(form)
{
document.getElementById("submitbutton").disabled=true;
return true;
}
</script>
</head>
<body>
<form action="" method="post" >
<input type="submit" value="提交" id="submitbutton" onclick="return checkValid(this)"/>
</form>
</body>
</html>
posted on 2007-08-27 19:57
Ke 閱讀(1147)
評論(2) 編輯 收藏 所屬分類:
others