我想在复选框切换中删除此类。
$("#checkbox").toggle(function () {
var it0 = $('#IT0').text();
var ip1 = $('#sv1').text();
var TC = "<div class='" + ip1 + "' id='" + it0 + "'><input type='text' name='test' value='" + ip1 + "'></div>";
$('#selected').html(TC);
}, function () {
var it0 = $('#IT0').text();
var ip1 = $('#sv1').text();
$("#" + it0).removeClass("." + ip1);
});
我不确定为什么删除类不能用于"<div class='"+ip1+"' id='"+it0+"'>
答案 0 :(得分:4)
答案 1 :(得分:0)
不需要点“。”,请参阅以下jquery API文档中的示例
从匹配的元素中删除“blue”类。
<!DOCTYPE html>
<html>
<head>
<style>
p { margin: 4px; font-size:16px; font-weight:bolder; }
.blue { color:blue; }
.under { text-decoration:underline; }
.highlight { background:yellow; }
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<p class="blue under">Hello</p>
<p class="blue under highlight">and</p>
<p class="blue under">then</p>
<p class="blue under">Goodbye</p>
<script>$("p:even").removeClass("blue");</script>
</body>
</html>