<html>
<head>
<title>提交后按钮变灰色 - www.plcxue.com</title>
<script>
function goo(obj)
{
obj.
disabled =true;
document.getElementById("form").submit();
}
</script>
</head>
<body>
<form method="post" action="http://www.plcxue.com" onSubmit="return CheckLinkForm();" name="form" target="_blank">
<input type="button" value="提交" onClick="goo(this);">
</form>
</body>
</html>