1

我有一个桌面小工具,可以从网站上提取 RSS 源。提要包含有关问题的信息 - 即。优先级、时间、描述。

提要项目显示在桌面上 - 但是我需要根据它们的优先级对它们进行颜色编码,即 1 = 红色等。使用 substr 函数 - 有没有更好的方法来使用 JavaScript / HTML 做到这一点?

目前我已经破解了这个 - 但有没有更优雅的解决方案?

if (feed.item.description.substr(10,1) == "1")
{
document.write "<a href colour="red"" + item + ">";
else if (feed.item.description.substr(10,1) == "2")
{
document.write "<a href colour="yellow"" + item + ">";
else
{
document.write "<a href colour="green"" + item + ">";
4

1 回答 1

0

为什么不用 CSS 来做呢?根据优先级或其他什么给锚标签一个类(或多个类),然后使用 CSS 文件来驱动样式。

document.write("<a href='(whatever)' class="description_" + feed.item.description.substr(10, 1));

或类似的东西。然后你的 CSS 文件会说

a.description_1 { color: red; }
a.description_2 { color: yellow; }

ETC

于 2010-05-20T00:24:22.960 回答