jquery或者JS怎么改class的名字?
jquery可以使用attr()或prop()方法修改類名,javascript可以修改對象的className屬性,關鍵代碼如下:$("#test").attr("class","blue");$("#test").prop("class","blue");document.getElementById("test").className = "blue";實例演示如下:
1、HTML結構<style>.red{color:red !important;}.blue{color:blue !important;}</style><div id="test">我是示例DIV</div><input type="button" id="js" value="使用javascript方法修改類名為red"><br><input type="button" id="jq" value="使用jquery方法修改類名為blue"><br>
2、jquery代碼$(function(){$("#jq").click(function() {$("#test").attr("class","blue");});}); window.onload = function(){document.getElementById("js").onclick = function(){document.getElementById("test").className = "red";}}3、效果演示