本文介绍了在页面加载上添加类到对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

基本上我想这样做:

<li id="about"><a href="#">About</a>

当页面加载时进入此页面:

Into this when the page loads:

<li id="about" class="expand"><a href="#">About</a>

我找到了这个帖子,但javascript并不是很好,无法适应它:

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

推荐答案

这应该有效:

window.onload = function() {
  document.getElementById('about').className = 'expand';
};

或者如果你正在使用jQuery:

Or if you're using jQuery:

$(function() {
  $('#about').addClass('expand');
});

这篇关于在页面加载上添加类到对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 15:17