1)test.vbs
Function demo()
msgbox "Welcome to Follow Tutorials"
End Function
2)test1.html
<meta http-equiv="x-ua-compatible" content="IE=10">
<title>Follow Tutorials</title>
<script type="text/vbscript" src="test.vbs"></script>
</head>
<body>
<h2>Placement of VBScript in head section</h2>
<input type="button" onclick="demo()" value="Follow Tutorials"/>
<p>Click to see event </p>
</body>
上面是我试图运行的代码作为一个简单的例子。函数demo()在单独的文件test.vbs中,我想在点击按钮时调用html页面。
我使用IE11并且IE11不支持vbscript。所以有没有办法可以在html中用javascript调用vbs文件?
请注意,如果在此帖中删除了html标记,因为它允许我发布问题
答案 0 :(得分:1)
IE11正试图删除对VBScript的支持,因此添加<script language="vbscript">
将无效。查看this question应该可以帮助您找到解决方法。如果您提出问题,请将您的解决方法发布到您的问题。