The replace() method of the DOMTokenList interface replaces an existing token with a new token.
tokenList.replace(oldToken,newToken);
DOMString representing the token you want to replace.DOMString representing the token you want to replace oldToken with.Void.
In the following example we retrieve the list of classes set on a <span> element as a DOMTokenList using Element.classList. We then replace a token in the list, and write the list into the <span>'s Node.textContent.
First, the HTML:
<span class="a b c"></span>
Now the JavaScript:
var span = document.querySelector("span");
var classes = span.classList;
try {
classes.replace("c", "z");
span.textContent = classes;
} catch(e) {
span.textContent = e;
}
The output looks like this:
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'replace()' in that specification. | Living Standard | Initial definition |
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | 61 | 49 (49) | ? | ? | (Yes) |
| Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | 61 | 61 | 49.0 (49) | ? | ? | (Yes) |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DOMTokenList/replace