1

对于我的 JS html5 类,我正在尝试创建一个网页,允许用户选择背景颜色以及是否要使用 SANS SERIF 或 SANS 字体。我有背景颜色工作 -

var inputColor = prompt( "Enter a color name for the " +
    "background of this page", "" );
document.body.setAttribute( "style", "background-color: " + inputColor );

我不知道如何使用相同的想法并让他们在不擦除新背景颜色的情况下选择字体。

建议非常感谢。

4

1 回答 1

0

不要触摸style属性,而是更改element.style.*属性。

document.body.style.backgroundColor = "foo";
document.body.style.fontFamily = "bar";
于 2013-08-08T15:48:49.107 回答