如何从vbscript调用javascript函数
如何从 vbscript 调用 javascript 函数。 我是这样写的
<script type="text/vbscript">
jsfunction()
</script>
<script type="text/javascript">
function jsfunction()
{
alert("Hello")
}
</script>
,但它显示类型不匹配如何实现它。请帮我。
谢谢你, 米希尔
how to call javascript function from vbscript.
i wrote like this
<script type="text/vbscript">
jsfunction()
</script>
<script type="text/javascript">
function jsfunction()
{
alert("Hello")
}
</script>
but it is showing that type mis match how to achieve it. please help me.
Thank you,
Mihir
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设您想要此客户端而不是 ASP;
如果将 JScript 块放置在 VBScript 块之前(或将调用连接到加载事件),则可以正常工作。 (当然仅限IE)
Assuming you want this client side as opposed to ASP;
If you place the JScript block before the VBScript block (or wire the call to a load event) that will work fine. (IE only of course)
从 Javascript 调用 VBScript 函数
你的 VBScript:
你的 Javascript:
反转:
从 VBScript 调用 Javascript 函数
Calling a VBScript function from Javascript
Your VBScript:
Your Javascript:
Inversed:
Calling a Javascript function from VBScript
试试这个...
Try this ...
我们应该编写 return 而不是警报,然后使用 response.write-
代码如下打印页面上的值 -
Instead of alert we should write return which is in turn print the values on page using response.write-
code is below -