我正在尝试修改代码来更改单个单词的颜色,但我不知道如何修改。
原始代码为
crypt_single_getPar = eval(\'(\' + httpGet("https://api.cryptonator.com/api/ticker/" +
crypt_single_base_currency.match(/.*?\\(([0-9a-z]+)\\)/i)[1] + "-" + crypt_single_target_currency.match(/.*?\\(([0-9a-z]+)\\)/i)[1]) + \')\');
以及
if (crypt_single_getPar.success != false) {
if (crypt_single_getPar.ticker.price > 1)
crypt_single_price = Math.round(crypt_single_getPar.ticker.price * 100) / 100;
else
crypt_single_price = crypt_single_getPar.ticker.price
var crypt_single_text_style = \'<font style="color:#cc0000;"><b>↓</b></font>\';
if (crypt_single_getPar.ticker.change >= 0) {
crypt_single_text_style = \'<font style="color:#009900;"><b>↑</b></font>\';
}
document.write(\'\\
<div class="cryptonatorwidget" style="border-radius:4px;padding:10px;\' + crypt_single_style + \'">\\
<div><font style="font-size:90%;">\' + crypt_single_base_currency + \'</font>\\
<b>\' + crypt_single_price + \'</b> \' + crypt_single_target_currency.match(/.*?\\(([0-9a-z]+)\\)/i)[1] +\'\\
</div>\');
结果是
我正试着像这样改变颜色
我试图达到这个结果
document.write(\'\\
<div class="cryptonatorwidget" style="border-radius:4px;padding:10px;\' + crypt_single_style + \'">\\
<div><font style="font-size:90%;">\' + crypt_single_base_currency + \'</font>\\
<b>\' + crypt_single_price + \'</b> \' + <font style="font-color:#2ED7A2;">\' + crypt_single_target_currency.match(/.*?\\(([0-9a-z]+)\\)/i)[1] + \'</font>\\
</div>\');
但随后所有内容都消失在了网页上。
有人能帮我吗?
谢谢