在不使用 jQuery 的情况下,如何根据选择列表中当前选择的选项更改正文类?
提前致谢!
尝试这个
var ddl = document.getElementById("dropDownListID");
var optnValue = ddl.options[ddl.selectedIndex].text;
if(optnvalue == "something")
document.body.className = "newClass";
else
document.body.className = "otherClass";
想法是获取选项值,然后根据您获得的值更改body标签的类
注意
这将有选项标签的文本,
即,<option value="1">something</option>
So ddl.options[ddl.selectedIndex].text
will give you something
and
ddl.options[ddl.selectedIndex].value
will give you1