これは、あなたがリクエストしたものの実際の例です: http://jsfiddle.net/ALLew/
例では:
- すべてのULは黄色です
- クラス rtsULmenuLeft を持つ項目は赤です
- クラス rtsULmenuRight を持つアイテムは青色です
ご覧のとおり、rtsULmenuLeft classNames が削除され、リストが黄色で表示されます。
// Define a function to run on page load.
var loadCheck = function() {
// Cancel the function if the page isn't loaded...
if(document.readyState !== "complete") {
// ... but call it again in 100 milliseconds.
setTimeout(loadCheck, 100);
return;
}
// From here on, the page is loaded.
// Obtain a list of all elements with the particular class name
var elList = document.getElementsByClassName("rtsULmenuLeft");
// Loop over the elements until there are no longer any with the class.
while(elList.length > 0) {
// For each element, remove the class.
elList[0].className = elList[0].className.replace(
/\brtsULmenuLeft\b/, // RegExp of class name in word boundaries
"" // Replace with empty string - remove it.
);
}
};
loadCheck();