我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The replace
()
method of the DOMTokenList
interface replaces an existing token within a given list by a new one.
Syntax
tokenList.replace(oldToken, newToken);
Parameters
Example
console.log(document.documentElement.classList.contains("_mdntest")); //false console.log(document.documentElement.classList.contains("_mdntest2")); //false document.documentElement.classList.add("_mdntest"); document.documentElement.classList.replace("_mdntest", "_mdntest2"); console.log(document.documentElement.classList.contains("_mdntest")); //false console.log(document.documentElement.classList.contains("_mdntest2")); //true
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'DOMTokenList.replace()' in that specification. |
Living Standard | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | ? | 49 (49) | ? | ? | ? |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | ? | ? | 49.0 (49) | ? | ? | ? | ? |