可以通过jquery来实现,
首先,用hasClass方法判断它是否有这种样式,
接着,如果有,执行冒号前面的语句,
如果没有,执行冒号后面的语句。
具体是以下代码:
$("#id").hasClass("className") ? console.log("Has this class.") : console.log("Do not has this class.")给select加个id号,然后js获取到它的selectedIndex这样就可以知道当前用的是哪个css如下:<select id=sel onchange="document.styleSheets[0].href = this.options[this.selectedIndex].value + '.css'">
……
<script>
var sels=sel.selectedIndex//这句得到了option的编号,通过这个编号你就该知道当前是哪个css
</script>