<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 阅读(1143)
评论(2) 编辑 收藏 所属分类:
others