我正致力于定制具有底层平台的在线应用,因此我对可以更改的结构有多少限制。它们确实为头部提供了完整的CSS自定义和HTML自定义。
应用程序上有一些实例说" 1点" .cost
我想改为" 1推荐。"鉴于能力有限,是否可以这样做?我无法直接编辑html。是否有可能以某种方式替换它?
答案 0 :(得分:0)
在头部,身体或任何可能的位置添加以下内容:
for(var i = 0; i < len; i++){
let a = liTags[i].width;
let b = divTags[i].width;
$.get(someUrl).then(function(data) {
// each call to $.get() here in the loop has it's own a and b
// variables to use here, which would not be the case with var
});
}
答案 1 :(得分:0)
您可以在CSS中执行此操作。干得好。请参阅JSfiddle HERE
HTML:
<div class="demo">
<span> 1 Point </span>
</div>
CSS:
.demo span{
display:none;
}
.demo:after{
content: "1 Referral";
}