javascript 操作类名,className 属性实现添加、删除和替换

方法一 、

//  以下面的HTML代码为例:
<div class="bd user disabled">...</div>

// 要删除"user"类
let targetClass = "user"
// 把类名拆分为数组
let classNames = div.className.split(/\s+/)
// 找到要删除类名的索引
let idx = classNames.indexOf(targetClass)
// 如果有就删除
if (idx > -1) {
    classNames.splic(idx,1)
}

// 重新设置类名
div.className = classNames.join(" ")

方法二、HTML5 通过给所有元素增加classList 属性为这些操作提供了更简单也更安全的实现方式。

// 删除"disabled"类
div.classList.remove("disabled");

// 添加"current"类
div.classList.add("current");

div.classList.toggle("user");

// 检测类名
if (div.classList.contains("bd") && !div.classList.contains("disabled")){
// 执行操作
}

// 迭代类名
for (let class of div.classList){
doStuff(class);
}

// 添加了classList 属性之后,除非是完全删除或完全重写元素的class 属性,否则className
属性就用不到了。IE10 及以上版本(部分)和其他主流浏览器(完全)实现了classList 属性。

 

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,下面是一个简单的JavaScript原生选项卡实现: HTML部分: ```html <div class="tab"> <button class="tablinks" onclick="openTab(event, 'tab1')">Tab 1</button> <button class="tablinks" onclick="openTab(event, 'tab2')">Tab 2</button> <button class="tablinks" onclick="openTab(event, 'tab3')">Tab 3</button> <div id="tab1" class="tabcontent"> <h3>Tab 1 Content</h3> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> </div> <div id="tab2" class="tabcontent"> <h3>Tab 2 Content</h3> <p>Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div> <div id="tab3" class="tabcontent"> <h3>Tab 3 Content</h3> <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.</p> </div> </div> ``` CSS部分: ```css .tab { overflow: hidden; border: 1px solid #ccc; background-color: #f1f1f1; } .tab button { background-color: inherit; float: left; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; } .tab button:hover { background-color: #ddd; } .tab button.active { background-color: #ccc; } .tabcontent { display: none; padding: 6px 12px; border: 1px solid #ccc; border-top: none; } ``` JavaScript部分: ```javascript function openTab(evt, tabName) { var i, tabcontent, tablinks; tabcontent = document.getElementsByClassName("tabcontent"); for (i = 0; i < tabcontent.length; i++) { tabcontent[i].style.display = "none"; } tablinks = document.getElementsByClassName("tablinks"); for (i = 0; i < tablinks.length; i++) { tablinks[i].className = tablinks[i].className.replace(" active", ""); } document.getElementById(tabName).style.display = "block"; evt.currentTarget.className += " active"; } ``` 解释: 通过 HTML 中的按钮元素和对应的内容区域,通过 JavaScript 的事件监听实现点击按钮显示对应的内容区域的功能。其中,openTab 函数接收两个参数,分别是事件对象 evt 和对应的选项卡名称 tabName。在函数内部,通过循环遍历所有内容区域和按钮元素,将它们的样式 display 设为 none,将所有按钮元素的类名中的 active 替换为空格。然后再将对应的内容区域样式 display 设为 block,将对应的按钮元素的类名中加上 active 样式,以示当前选中状态。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值