如何删除点击事件的课程?

时间:2016-04-24 23:17:16

标签: javascript jquery

HTML:

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" type="text/css" href="style.css"/>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
    <script type="text/javascript" src="app.js"></script> 
    <title>Prueba</title>
</head>
<body>
    <div class="prueba"></div>
</body>
</html>

CSS:

.prueba {
    height: 100px;
    width: 100px;
    background-color: green;
}

JS(编辑):

var main = function() {
    $('.prueba').click(function() {
        $(this).removeClass('.prueba');
    });
};

$(document).ready(main); 

它(仍然)不起作用。有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

要选择类,您应该在类名前面加上一个点:

$('.prueba')

JQuery docs您可能需要查看。