We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这看起来像带有方括号表示法的 JavaScript/JScript。 Internet 上有许多 JavaScript 参考资料;请参阅此问题以获取一些链接: 官方 JavaScript 文档在哪里?
还有 JavaScript IDE,为内置 JavaScript 对象以及主要库提供语法补全。
顺便说一句,您的示例中的
sParameters
实际上是string
(被分割成子字符串),而arrayParamaters
是一个数组
。This looks like JavaScript/JScript with square bracket notation. There're many JavaScript references on the Internet; see this questions for some links: Where is the official JavaScript documentation?
There're also JavaScript IDEs that provide syntax completion for built-in JavaScript objects as well as major libraries.
And by the way,
sParameters
in your example is actually astring
(which is being splitted into substrings), andarrayParamaters
is anarray
.