我正在尝试从DIV中删除一个类但是我能够做的就是在我想要删除的那一侧添加一个新类。如何完全删除fullpage-wrapper
?
<script>
jQuery('#productPage').addClass('test3-test').removeClass('fullpage-wrapper');
</script>
答案 0 :(得分:0)
我认为你必须将你的js代码放在$(document).ready(function(){// here your js code});)
这样,一旦你的html页面被加载,你的js代码就会被激活。
答案 1 :(得分:-1)
刚刚添加了一些注释来解释程序
$(document).ready(function(){
$("#add").click(function(){
$("#demo").addClass("demo"); //add class "demo" to div "demo"
});
$("#remove").click(function(){
$("#demo").removeClass("demo"); //remove class "demo" from div "demo"
});
});
.demo{
background: red;
height:50px;
width:250px;
}
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
</head>
<body>
<div id="demo">This is a demo</div>
<button id="add">Add Class</button>
<button id="remove">Remove Class</button>
</body>
</html>