对于我的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 );
我无法弄清楚如何使用相同的想法并让他们选择字体而不删除新的背景颜色。
建议非常感谢。
答案 0 :(得分:0)
请勿触摸style
属性,而是更改element.style.*
属性。
document.body.style.backgroundColor = "foo";
document.body.style.fontFamily = "bar";