由于某些原因,我需要将Aliexpress页面项目上的标题变体字从颜色改为颜色,但是不起作用
链接:https://www.aliexpress.com/item/32959907521.html
<div class="sku-title">Color: <span class="sku-title-value"></span></div>
我在此脚本中使用了tampermonkey
// ==UserScript==
// @name Aliexpress Change
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.aliexpress.com/item/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var className= document.getElementsByClassName("sku-title");
for(i=0;i<className.length;i++)
{
className[i].innerHTML = "Colors";
}
})();
有人可以帮忙吗?谢谢
====更新解决方案=== 删除
'use strict';
感谢某些性能