简体   繁体   中英

How do you set up your JScript (NOT JScript.NET) development environment?

In my environment, if I create a class in JScript syntax:

class test{

}

and then save it to a file named "test.js" and run it with wscript, I get a Microsoft JScript "Syntax error" at line 1.

However, if I simply, say, write a function:

  function getInput() {

   var wshell = WScript.CreateObject("WScript.Shell");
   wshell.Popup ("Do you want to continue?");

   return userInput
}

getInput()

and run it the same way, it works.

Hopefully, there is something fundamentally wrong with my class definition. If that is the case, I am excited to find out.

JScript is just Microsoft's implementation of JavaScript /ECMAScript. As such, it doesn't have classes, or any of the other things added to JScript.NET to make it kinda-sorta fit into .NET.

Ignore JScript.NET, and read up on the WSH version of JScript .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM