このページの「売り切れ」を「近日公開」に変更しようとしています。
現在、次のものがありますが、機能していません。
window.onload = function() {
document.getElementsByClassName("product-mark sold-out").innerHTML = "Coming Soon";
};
このページの「売り切れ」を「近日公開」に変更しようとしています。
現在、次のものがありますが、機能していません。
window.onload = function() {
document.getElementsByClassName("product-mark sold-out").innerHTML = "Coming Soon";
};
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";
}
}
それはそれの世話をする必要があります!