我正在尝试用vbs创建一个html。但它根本不起作用。我确信我的IE10中启用了运行脚本。 IE9。我也尝试过使用chrome和firefox,而不是它们的工作....
我只是想知道如果我的代码或IE存在问题。我知道IE 11不再支持vbs,但我们仍然在IE 10.所以有任何建议吗?
这只是一个简单的测试页面,但它不会工作.....
<html>
<head>
<title>Validation in Button Event</title>
<script language="VBScript">
<!--
Sub Button1_OnClick
Dim TheForm
Set TheForm = Document.forms("ValidForm")
If IsNumeric(TheForm.Text1.Value) Then
If TheForm.Text1.Value < 1 Or TheForm.Text1.Value > 10 Then
MsgBox "Please enter a number between 1 and 10."
Else
MsgBox "Thank you."
TheForm.Submit
End If
Else
MsgBox "Please enter a numeric value."
End If
End Sub
-->
</script>
</head>
<body>
<h3>Validation in Button Event</h3>
<hr>
<form id="ValidForm">
Enter a value between 1 and 10:
<input name="Text1" type="text" size="2">
<input name="Button1" type="button" value="Click Here">
</form>
</body>
</html>
答案 0 :(得分:0)
在这个例子中,VBScript被注释掉了
VBScript在Firefox中仍然正常(总是有)(我目前使用的是32.0.3版本)