gpt4 book ai didi

javascript - 如何更改我的 的第一类名称并保持其他类不变?

转载 作者:行者123 更新时间:2023-11-30 10:26:08 25 4
gpt4 key购买 nike

我有以下 HTML:

<html class="black abc"> or 
<html class="red def"> or
<html class="red this is a test">
etc ...

使用下面的函数我可以获得值第一类:

var color = html.className.split(' ')[0]

如何将第一类更改为其他类。例如,我该如何改变:

<html class="black abc">

to

<html class="red abc">

最佳答案

var tags = document.getElementsByTagName('html')[0].className.split(' '); //Get a list of tags.
tags[0] = 'foo'; //Change the 0th tag
html.className = document.getElementsByTagName('html')[0].join(' '); //Put the tag list into the html

关于javascript - 如何更改我的 <html> 的第一类名称并保持其他类不变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19508940/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com