标签: javascript jscript wsh
Python可以交互式运行,所以我想知道是否也可以交互式运行WScript Javascript(Microsoft称之为JScript)。
我看到我可以运行这样的脚本: cscript hello.js
内容:
WSH.Echo("Hello world"); WSH.Quit();
但我只是想做点什么:
Echo("Hello world");
这可能吗?