MSDN 库中的 Javascript 文档?
我正在使用 Visual Studio 2010(Visual Web Developer),并且我已经通过“帮助库管理器”(帮助->管理帮助设置)安装了所有似乎与 Web 开发和“JScript”相关的文档。尽管如此,似乎没有安装任何关于 javascript 本身的文档。例如,搜索 getElementById,您将获得除有关 javascript 函数本身的信息之外的所有内容。
在线MSDN有javascript doc,如何离线添加?
I am using Visual Studio 2010 (Visual Web Developer) and I have installed through the "Help Library Manager" (Help->Manage Help Settings) all the documentation that seems to be related to web development and "JScript". And despite this, there doesn't seem to be any documentation on javascript itself installed. Search for getElementById for example and you get everything except information about the javascript function itself.
Online MSDN has the javascript doc, how to add it offline?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JScript 是 Microsoft 对 JavaScript 的实现,没有使用商标词“Java”。
getElementById
不是 JavaScript 的一部分。这是一个 DOM 方法。浏览器向其客户端脚本环境公开 DOM API。如果 DOM 文档没有出现在 JScript 文档中,您可能需要查找它。JScript is Microsoft's implementation of JavaScript without the user of the trademarked word "Java".
getElementById
is not part of JavaScript. It is a DOM method. Browsers expose a DOM API to their client side scripting environments. You probably need to find DOM documentation if it doesn't appear in the JScript docs.看一下打包。您可以选择要从 MSDN Library(以及 TechNet 和 MSDN Content Service)下载哪些帮助文件以供离线阅读。您也许可以通过 MSDN 库从那里下载 javascript 文档。
Take a look at Package This. You can select what help files you want to download for offline reading from the MSDN Library (as well as TechNet and MSDN Content Service). You might be able to download the javascript docs from there via the MSDN library.