0

我需要能够从 VBScript 声明 Iframe 的来源。Iframe 在脚本之外声明

我框架 Synatx:

<iframe  src ="" runat ="server" id="iframepdf" scrolling="auto"  align= "middle" 
marginheight="10px" width="1400px" height="700px"> 
</iframe>

我的代码:-

<asp:Content ID="content" ContentPlaceHolderID="content" Runat="Server">
<td>
<iframe  src ="" runat ="server" id="iframepdf" scrolling="auto"  align= "middle"     
 marginheight="10px" width="1400px" height="700px"> 
 </iframe>
 </td>
<script language="vbscript" type="text/vbscript">
dim srcofiframe
</script>

我试过 Document.getElementById("Iframepdf").src=srcofiframe -> 它没有用

4

2 回答 2

1

您需要修改的src属性<iframe>

Dim srcofiframe
srcofiframe = "http://www.example.com/"
document.getElementById("iframepdf").src = srcofiframe
于 2013-10-30T23:27:31.893 回答
0

如果您使用 JavaScript,那么 .src 是前进的方向,但是在 VBScript 中调用时会出错。如果您正在编写您使用的 .vbs:

设置 oIE = CreateObject("InternetExplorer.Application") oIE.Navigate ""

我的项目在 .hta 中,我应用了相同的逻辑:

iframepdf.Navigate ""

它奏效了。请注意,我将其称为声明,因此不需要“()”。

于 2014-07-29T21:30:21.430 回答