0

このページの「売り切れ」を「近日公開」に変更しようとしています。

現在、次のものがありますが、機能していません。

window.onload = function() {
  document.getElementsByClassName("product-mark sold-out").innerHTML = "Coming Soon";
};
4

1 に答える 1

2
window.onload = function(){
     //this captures all the elements with the spec classes
     var soldItems = document.getElementsByClassName('product-mark sold-out');

     //this changes each element 1 by 1 to new text
        for(var i=0; i<soldItems.length; i++){
           soldItems[i].innerHTML = "Coming Soon";
        }

}

それはそれの世話をする必要があります!

于 2014-09-21T01:29:36.410 に答える