对于我的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 );
我不知道如何使用同样的想法,让他们在不擦除新背景色的情况下选择字体。
非常感谢您的建议。
不要触摸style
属性,而是更改element.style.*
属性。
document.body.style.backgroundColor = "foo";
document.body.style.fontFamily = "bar";