1
function changeSize(fontsize) {
var body = document.getElementById("body");
var font = fontsize + "-font";
body.className = font;
}
<input type="button" onclick="changeSize(small)" value="Small" />
Firefox控制檯一直說小不定。我究竟做錯了什麼?爲什麼我得到這個錯誤?