在页面加载时将类添加到对象
基本上我想这样做:
<li id="about"><a href="#">About</a>
当页面加载时进入这个:
<li id="about" class="expand"><a href="#">About</a>
我找到了这个线程,但我不太擅长javascript并且无法适应它: Javascript:如果选中复选框则加载,更改 li 类
Basically I want to make this:
<li id="about"><a href="#">About</a>
Into this when the page loads:
<li id="about" class="expand"><a href="#">About</a>
I found this thread, but am not so good with javascript and couldn't adapt it:
Javascript: Onload if checkbox is checked, change li class
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可行:
或者如果你使用 jQuery:
This should work:
Or if you're using jQuery:
我建议使用 jQuery 与此功能:
这会将扩展类添加到 id 为 about 的元素,当 dom 为页面加载就绪。
I would recommend using jQuery with this function:
This will add the expand class to an element with id of about when the dom is ready on page load.