如何使用“load”访问 HTML 元素在 mootools 核心?
mootools上的负载是否会访问html元素? 我尝试访问名为 class=repliesList 的 html 元素,在我的代码中有
var tabs = getElementsByClass('repliesList'); 警报(选项卡);
但是 tabs 变量只打印空白,如何加入加载的 html 元素? 我尝试过使用 domready,但根本不运行,甚至打印处于警报状态的内容也没有运行。
请帮帮我
whether the load on the mootools will access the html element?
I try to access the html element named class = repliesList, in my code there
var tabs = getElementsByClass ('repliesList');
alert(tabs);
but tabs variable print only blank, how to join loaded html element?
I've tried using domready, but does not run at all, even printing something that is on alert was not.
please help me out
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在使用 mootools 那么为什么不使用 mootools 选择器。
您可以通过 $$('.repliesList') 访问元素。你在代码中犯的错误是你缺少“文档”字写
document.getElementsByClass('repliesList');
但你应该更喜欢 mootools 选择器
if you are using mootools then why don't you are using mootools selectors.
you can access element by $$('.repliesList'). What you wronn in you code is you are missing "document" word write
document.getElementsByClass('repliesList');
But You should prefer mootools selectors