开发者

How to include a .vbs script file into a .xhtml file?

开发者 https://www.devze.com 2023-01-23 10:35 出处:网络
How do I include a .vbs file开发者_运维百科 into a .xhtml file?You can use the <script> tag to include the VBS in your page like this:

How do I include a .vbs file开发者_运维百科 into a .xhtml file?


You can use the <script> tag to include the VBS in your page like this:

<script type="text/vbscript">
  // your VBS code
</script>

Note that VBS only runs in IE. You need to go for JavaScript to get your script run in all browsers.

0

精彩评论

暂无评论...
验证码 换一张
取 消