在哪里可以找到 JavaScript 文档?
我认为有一个 https://developer.mozilla.org/en/JavaScript/Reference但是对于诸如 Textarea 对象将具有哪些属性/功能之类的事情,我可以在哪里获得它?
我知道textarea有selectionStart、selectionEnd等属性,但是还有其他属性吗?我在哪里可以找到该信息?
I think theres one https://developer.mozilla.org/en/JavaScript/Reference but for for things like what properties/functions a Textarea object will have, where can I get it?
I know textarea have properties like selectionStart, selectionEnd but what others? where can I find that info?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Gecko DOM 参考 非常完整。
对于阴暗面(IE 特定的东西),还有 Microsoft 的 HTML 和 DHTML 参考
有关跨浏览器的建议,请参阅 QuirksMode(感谢 Raynos)
The Gecko DOM Reference is pretty complete.
For the dark side (IE-specific stuff), there's also Microsoft's HTML and DHTML Reference
And for cross-browser advice, consult QuirksMode (thanks Raynos)
如果您需要了解有关 javascript 的任何信息,
请在 google 中搜索它并在末尾添加单词“mdc”。我个人觉得内部 MDC 搜索栏很烦人而且没有帮助。
在你的情况下:
https://developer.mozilla.org/en/DOM/HTMLTextAreaElement
[编辑]
我实际上对所有事情都这样做。例如,如果我需要了解有关 transact sql 命令的任何信息,就不要费力浏览 MSDN 网站。我在谷歌中搜索该命令并添加“t sql msdn”。如果人们在他们的网站上内部使用谷歌搜索引擎而不是他们自己的半成品搜索引擎就好了。
If you need to know anything about javascript
Search for it in google and add the word "mdc" on the end. I personally find the internal MDC search bar annoying and unhelpful.
in your case :
https://developer.mozilla.org/en/DOM/HTMLTextAreaElement
[Edit]
I actaully do this for everything. For example rather then wading through the MSDN website if I need to know anything about a transact sql command. I search for the command in google and add "t sql msdn". If only people used the google search engine internally on their websites rather then their own half baked search engine.