使用jQuery删除classClass

时间:2013-12-16 14:38:59

标签: jquery html css removeclass

我正在尝试使用remove class函数。我的jQuery代码如下。

$(document).ready(function() {
    $("div.hidden").removeClass("hidden");
});

HTML

<!DOCTYPE html>
<html>
    <head>
        <title>Testing Page</title>
        <script src="http://code.jquery.com/jquery-latest.min.js"></script>
        <script src="testing.js"></script>
        <link rel="stylesheet" type="text/css" href="style.css">
    </head>
    <body>
        <h1 class="hidden">Hello World</h1>
        <div>Dog</div>
        <div class="hidden">Cat</div>
        <div>Girl</div>
    </body>
</html>

它没有按预期工作。我期望隐藏类的所有div都删除了类,从而导致显示div。

CSS

.hidden {
    display: none;
}

0 个答案:

没有答案