我需要.js
在控制台中使用 spidermonkey 运行时获取用户输入,如下所示:
$ js myprogram.js
Ruby 的 JavaScript 等价物是gets
什么?
我需要.js
在控制台中使用 spidermonkey 运行时获取用户输入,如下所示:
$ js myprogram.js
Ruby 的 JavaScript 等价物是gets
什么?
据我所知,有一个 readline() 函数,但它是 spidermonkey 的特定函数,它不是 javascript 的一部分。
例子:
1)readline-test.js:
print("Type some text and press <ENTER>:\t");
var userInput = readline();
print("User input: " + userInput);
2)js readline-test.js
有关更多信息,请参阅https://developer.mozilla.org/en-US/docs/SpiderMonkey/Introduction_to_the_JavaScript_shell。
You can't really depend on the console being there. It's not something that is guaranteed, even while most browsers do have a javascript console. Beyond that I don't believe you can get values without calling a function with the console.