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.A boolean value — true if the token was replaced successfully, and false if not.
Note: In older browsers, replace() returns 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;
var result = classes.replace("c", "z");
console.log(result);
if(result) {
span.textContent = classes;
} else {
span.textContent = 'token not replaced successfully';
} The output looks like this:
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'replace()' in that specification. | Living Standard | Initial definition |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | 61 | 17 | 49 | ? | 48 | Yes |
return()'s value is a boolean, not void as it used to be. |
67 | 18 | 61 | No | 54 | No |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | 61 | 61 | 17 | 49 | 48 | Yes | No |
return()'s value is a boolean, not void as it used to be. |
67 | 67 | 18 | 61 | 54 | No | 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