我有一个VB代码的HTA提示符。单击“提交”按钮时,我想在HTA窗口中加载一个URL。但是,我找不到任何有助于我的情况的信息。有人可以帮我在我的HTA提示中包含一个iframe,以便显示一个网站吗?我可以使用https://www.google.com作为示例。如果您有任何问题,请告诉我。
以下是我目前提交按钮的代码:
bodystring = bodystring & "<BR><BR><BUTTON CLASS='Bttn_Back' OnClick='PrevStage()'>BACK</BUTTON> <BUTTON CLASS='Bttn_Submit' OnClick='NextStage()'>SUBMIT SURVEY</BUTTON>"
以下是“NextStage()”函数的代码部分:
ElseIf STAGE = 62 Then
SaveResults()
Window.Close()
End If
答案 0 :(得分:0)
将其添加到HTA的HTML中:
<iframe id="htmlhere" src="" style="display: none;"></iframe>
然后在nextStage()
:
document.getElementById("htmlhere").src = "http:/..."; // Loads a new document to iframe
document.getElementById("htmlhere").style.display = ""; // Setting style.display empty shows the iframe
很抱歉使用JS,但我的VB技能或多或少为零。