如果div
有一些特定的类,我该如何向正文添加一个类? (JSFiddle)
HTML
<body>
<div id="pos-target" class="pos-fixed"><!-- Code --></div>
</body>
JS
function () {
$('#pos-target').hasClass(pos-fixed)) { $(document.body).addClass(‘pos-change’);
}
答案 0 :(得分:4)
if( $('#pos-target').hasClass('pos-fixed') === true )
{
$('body').addClass('pos-change');
}
答案 1 :(得分:3)
试试这个:
$(document).ready(function(){
if($('#pos-target').hasClass("pos-fixed"))
$("body").addClass("pos-change");
});