當前位置:軟件學堂 > 資訊首頁 > 網(wǎng)絡編程 > 編程其他 > 在JavaScript運行VBScript函數(shù)

在JavaScript運行VBScript函數(shù)

2012/11/7 11:06:53作者:佚名來源:網(wǎng)絡

移動端

【實例名稱】

在JavaScript運行VBScript函數(shù)

【實例描述】

客戶端腳本可以通過JavaScript和VBScript實現(xiàn),兩種語言提供的函數(shù)庫不同。本例學習如何在JavaScript中NN VBScript函數(shù)。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>標題頁-學無憂(wangbatian.cn)</title> </head> <body> <script language="javascript"> execScript("MsgBox '歡迎使用'", "vbscript"); </script> </body> </html>

 

 

【運行效果】

 在JavaScript運行VBScript函數(shù)運行效果

【難點剖析】

本例的重點是“execScript”方法,其用來執(zhí)行一段腳本。“alert”是javaScript中彈出對話框的方法,而“MsgBox”.是VBScript中彈出對話框的方法,本例使用“execScript”方法調(diào)用“MsgBox”方法實現(xiàn)了彈出式窗口的效果。

【源碼下載】

為了JS代碼的準確性,請點擊:在JavaScript運行VBScript函數(shù) 進行本實例源碼下載 

標簽: JavaScript  VBScript  函數(shù)