在Javascript文件中定义并调用Wscript函数以在Windows Script Host中运行

问题描述 投票:3回答:1

我需要完全像我问题标题。

我有一个javascript文件,用于计算每年的感恩节日期,前提是年份值输入。

现在我希望这个javascript可以由Windows脚本宿主执行,并且还允许创建尽可能多的InputBox,而无需更改文件类型或扩展名。

我尝试下面的代码,但它给了我错误expected ;

ws = WScript.CreateObject('WScript.Shell');
var myDate = new Date();
myDate.setHours(0, 0, 0, 0);

// Function WSHInputBox(Message, Title, Value)
//  ' Provides an InputBox function for JScript
//  ' Can be called from JScript as:
//  ' var result = WSHInputBox("Enter a name", "Input", test);
//  WSHInputBox = InputBox(Message, Title, Value)
// End Function

strYear = GetUserInput( "Enter some input:" )
ws.Popup('Year ?'+strYear);

//var strYear = WSHInputBox("Enter the year", "Thanksgiving Year")
myDate.setYear(parseInt(strYear));

// Determine November 1.
myDate.setDate(1);
myDate.setMonth(10);

// Find Thursday.
var thursday = 4;
while(myDate.getDay() != thursday) {
    myDate.setDate(myDate.getDate() + 1);
}

// Add 3 weeks.
myDate.setDate(myDate.getDate() + 21);

ws.Popup('Result: ' + myDate);

Function UserInput( myPrompt )
' This function prompts the user for some input.
' When the script runs in CSCRIPT.EXE, StdIn is used,
' otherwise the VBScript InputBox( ) function is used.
' myPrompt is the the text used to prompt the user for input.
' The function returns the input typed either on StdIn or in InputBox( ).
' Written by Rob van der Woude
' http://www.robvanderwoude.com
    ' Check if the script runs in CSCRIPT.EXE
    If UCase( Right( WScript.FullName, 12 ) ) = "\CSCRIPT.EXE" Then
        ' If so, use StdIn and StdOut
        WScript.StdOut.Write myPrompt & " "
        UserInput = WScript.StdIn.ReadLine
    Else
        ' If not, use InputBox( )
        UserInput = InputBox( myPrompt )
    End If
End Function

Function GetUserInput( myPrompt )
' This function uses Internet Explorer to
' create a dialog and prompt for user input.
'
' Version:             2.11
' Last modified:       2013-11-07
'
' Argument:   [string] prompt text, e.g. "Please enter your name:"
' Returns:    [string] the user input typed in the dialog screen
'
' Written by Rob van der Woude
' http://www.robvanderwoude.com
' Error handling code written by Denis St-Pierre
    Dim objIE

    ' Create an IE object
    Set objIE = CreateObject( "InternetExplorer.Application" )

    ' Specify some of the IE window's settings
    objIE.Navigate "about:blank"
    objIE.Document.title = "Input required " & String( 100, "." )
    objIE.ToolBar        = False
    objIE.Resizable      = False
    objIE.StatusBar      = False
    objIE.Width          = 320
    objIE.Height         = 180

    ' Center the dialog window on the screen
    With objIE.Document.parentWindow.screen
        objIE.Left = (.availWidth  - objIE.Width ) \ 2
        objIE.Top  = (.availHeight - objIE.Height) \ 2
    End With

    ' Wait till IE is ready
    Do While objIE.Busy
        WScript.Sleep 200
    Loop
    ' Insert the HTML code to prompt for user input
    objIE.Document.body.innerHTML = "<div align=""center""><p>" & myPrompt _
                                  & "</p>" & vbCrLf _
                                  & "<p><input type=""text"" size=""20"" " _
                                  & "id=""UserInput""></p>" & vbCrLf _
                                  & "<p><input type=""hidden"" id=""OK"" " _
                                  & "name=""OK"" value=""0"">" _
                                  & "<input type=""submit"" value="" OK "" " _
                                  & "OnClick=""VBScript:OK.value=1""></p></div>"
    ' Hide the scrollbars
    objIE.Document.body.style.overflow = "auto"
    ' Make the window visible
    objIE.Visible = True
    ' Set focus on input field
    objIE.Document.all.UserInput.focus

    ' Wait till the OK button has been clicked
    On Error Resume Next
    Do While objIE.Document.all.OK.value = 0
        WScript.Sleep 200
        ' Error handling code by Denis St-Pierre
        If Err Then ' user clicked red X (or alt-F4) to close IE window
            IELogin = Array( "", "" )
            objIE.Quit
            Set objIE = Nothing
            Exit Function
        End if
    Loop
    On Error Goto 0


    ' Read the user input from the dialog window
    GetUserInput = objIE.Document.all.UserInput.value

    ' Close and release the object
    objIE.Quit
    Set objIE = Nothing
End Function

WScript.Quit();

有人可以帮忙,因为我被困在如何在这个相同的Javascript文件中包含两种类型的代码,我知道有一些方法,但那是什么?

javascript vbscript wsh hta windows-scripting
1个回答
0
投票

问题

  • 开发人员VickyDev想要在MSFT JScript文件中运行MSFT VBScript函数
  • InputBox是VBScript函数,而不是JScript函数
       // Function WSHInputBox(Message, Title, Value)
       //  ' Provides an InputBox function for JScript
       //  ' Can be called from JScript as:
       //  ' var result = WSHInputBox("Enter a name", "Input", test);
       //  WSHInputBox = InputBox(Message, Title, Value)
       // End Function

  • 使用Windows脚本宿主文件和脚本标记上的语言声明将VBScript和JScript结合在一起。
  • 确保在声明JScript之前首先声明所有VBScript函数

    <?xml version="1.0"?>
    <package>
    <job id="uu244trumpehant">

        <script language="vbscript">
        <![CDATA[
            Function HelloWorldVB
             msgbox "hello world from VB"
            End Function
        ]]>
        </script>

        <script language="jscript">
        <![CDATA[
            HelloWorldJS();
            HelloWorldVB();
            //HelloWorldVBTwo();    // this one will error
                                    // function defined below

            function HelloWorldJS(){
                WScript.Echo("hello world from JS");
            }
        ]]>
        </script>

        <script language="vbscript">
        <![CDATA[
            Function HelloWorldVBTwo
             msgbox "hello world from VBTwo"
            End Function
        ]]>
        </script>
    </job>
    </package>
© www.soinside.com 2019 - 2024. All rights reserved.