VBScript在加载时设置值



我有一个带有VBScript的HTA,它有一个元素设置为变量SN2:

<script language="VBScript">document.getElementById("ComputerName").value = SN2</script>

设置为打印到HTML文本框:

<html><input class="inputs" type=text id="ComputerName" name=ComputerName /></html>

而且效果很好!但是,我想将值设置为显示在onload 的文本框中

为此,我将VBScript函数设置为<body onload="myFunction()">。这很好,除了我需要将另一个功能设置为body onload

所以我想知道是否有一种方法可以用不同的方式将我的document.getElementById("ComputerName").value = SN2设置为onload。

我知道javascript中的方法,比如可以设置document.getElementById("ComputerName").onload,但在VBScript中似乎不起作用。这可以在VBScript中完成吗?如果可以,如何完成?我不能在我的案例中使用javascript。我特别指的是这个方法(尽管我不需要他们在这个例子中的任何iframe内容)。由于某些原因,这种JS方式无法在VBScript中进行翻译。

感谢您的意见!

您可以在加载时调用许多函数:

<BODY onLoad="firstFunction();secondFunction() ">

相关内容

  • 没有找到相关文章

最新更新