-2
什麼是JS更換爲以下VB代碼:JavaScript和VBScript代碼比較
set WshShell = WScript.CreateObject("WScript.Shell")
set IE = CreateObject("InternetExplorer.Application")
IE.Visible = False
IE.Navigate "http://myintranet/"
什麼是JS更換爲以下VB代碼:JavaScript和VBScript代碼比較
set WshShell = WScript.CreateObject("WScript.Shell")
set IE = CreateObject("InternetExplorer.Application")
IE.Visible = False
IE.Navigate "http://myintranet/"
沒有直接更換。 Javascript不提供在任何現代瀏覽器中訪問ActiveX對象的權限。
如果您想打開瀏覽器窗口,請使用window.open()
。
無法理解爲這個問題得到一個downvote的原因。 – Anurag
可能是因爲你沒有提到任何關於你試圖獲得答案的信息而被低估。 – Gurman
請編輯問題並指定您運行代碼的環境:WSH或Web瀏覽器。也添加相關標籤。 – omegastripes