是否有 Javascript 信息的中央存储库?

发布于 2024-09-01 20:36:56 字数 492 浏览 1 评论 0原文

例如,如果您想了解 PHP 函数的信息,您可以访问 http://www.php.net/。如果您想了解 Perl 函数的信息,可以访问 http://www.cpan.org/ 和/或使用 perldoc。如果您想了解有关 Java 的信息,可以访问 http://java.sun.com 和/或使用 javadoc 。但是,如果您想要有关 Javascript 方法/函数及其属性、返回值等的信息,您该去哪里?我问的原因是我正在使用“focus()”方法,想知道它是否可以传递任何值,或者在调用时是否返回任何内容。我粗略地进行了谷歌搜索,但没有发现太多。这样的野兽存在还是我运气不好?

For example, if you want information of PHP functions, you can go to http://www.php.net/ . If you want information of Perl functions you can to to http://www.cpan.org/ and/or use perldoc. If you want information on Java you can go to http://java.sun.com and/or use javadoc. However, if you want information on Javascript methods/functions and their attributes, return values, etc. where do you go? The reason I ask is I was playing with the "focus()" method and wondering if it could be passed any values or if it returned anything when called. I have done a cursory Google search but haven't found much. Does such a beast exist or am I out of luck?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

假扮的天使 2024-09-08 20:36:56

没有真正的一站式服务,因为针对不同浏览器有不同的 ECMAScript 实现。

重要资源:

  • 有关 JScript 的 MSDN 部分 ( IE 实现)和 DOM 的 IE 实现(感谢@David)
  • Mozilla 开发人员中心:JavaScript(Firefox 实现)
  • w3C DOM 规范
  • W3Schools 有一半不错的跨浏览器参考资料,为提醒我@Dalin 欢呼。根据我的经验,他们的东西对于基础知识来说是好的和可靠的(不过,@bobince 不同意,并指出了他们的示例中的安全漏洞。所以要小心。)在复杂的参考问题上,他们经常无法正确指出跨浏览器问题,您最终会在 MDC 和 MSDN 上查找更深入的信息。不过,值得注意的是,这是一个有用的来源。

  • ECMAScript 本身 - 这是基本语言“ JavaScript 背后没有特定于浏览器的部分,例如使其成为“现实世界语言”的文档对象模型。为链接@Bobince 干杯。

另请参阅此问题 关于参考站点和材料。

There is no real one-stop shop, because there are various implementations of ECMAScript specific to the various browsers.

Important resources:

  • MSDN section on JScript (IE implementation) and the IE implementation of the DOM (Thanks @David)
  • Mozilla Developer Center: JavaScript (Firefox implementation)
  • The w3C DOM Specification
  • W3Schools has half-decent cross-browser reference material, cheers for reminding me @Dalin. In my experience, their stuff is okay and reliable for the basics (@bobince disagrees, though, and points out security holes in their examples. So be careful.) on complex reference questions, they often fail to properly point out cross browser issues, and you end up looking on MDC and MSDN to find deeper information. Still, worth noting and a useful source.

  • ECMAScript itself - this is the basic language "behind" JavaScript without the browser-specific parts like the Document Object Model that make it a "real world language". Cheers for the link @Bobince.

See also this question on reference sites and materials.

沧桑㈠ 2024-09-08 20:36:56

就我个人而言,我喜欢使用 gotapi.com - 我的所有文档都集中在一个地方:-)

Personally I like to use gotapi.com - all of my documentation in one place :-)

北城孤痞 2024-09-08 20:36:56

您正在寻找的网站将是 EMAScript.org,但正如 Pekka 指出的那样,它不是与其他语言文档网站一样有用,因为许多浏览器偏离了规范。

我发现 DevGuru Javascript 索引页面 是一个很棒的 Web 资源编程,因为它非常容易阅读,您可以快速找到您要查找的内容。

The site you are looking for would be the EMAScript.org, however as Pekka indicated it is not as helpful as other language documentation sites since many browser deviate from the specifications.

I find the DevGuru Javascript Index page is a great resource for doing web programming, as it is very easy to read and you can quickly find what you are looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文