我是 HTML 编码的新手。我想要以下 HTML 代码:假设我有两个按钮,Button1 和 Button2。最初 Button1 被启用,而 Button2 被禁用。打开单击 Button1,应显示一个标签,其值为 1,2,(比如时间代码)。一旦达到 30 秒,则应启用 Button2。怎么能写出上面的HTML代码呢?我期待这样的代码:
<html>
<head>
</head>
<body>
<form>
<button type="button" name="button1" enabled="enabled" onclick="WaitLoad()">Click Button1</button>
<br/>
<br/>
<label> name="Label1"></label>
<br/>
<br/>
<button type="button" name="button2" disabled="disabled">Click Button2</button>
</form>
<script type="text/vbscript">
sub WaitLoad()
{
for i=1 to 30
Label1.text=i
next
button2.enable=true
}
</body>
</html>