我无法用jQuery隐藏我的段落

时间:2015-03-12 16:19:35

标签: javascript jquery hide

大家好,我无法隐藏我的段落,我不知道为什么。

Here is mi jsfiddle

和我的代码:

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title> Ejemplo 1</title>

    </head>
    <body>
            <p id="paragraph">This is Sparta</p>
            <script type="text/javascript" src="js/jquery.js"></script>
            <script type="text/javascript" src="js/hide.js"></script>
    </body>
</html>


    $('#paragraph').click(function)  {


    $('#paragraph').hide();

});

1 个答案:

答案 0 :(得分:0)

以下是关于&#39; 如何使用jQuery隐藏ID元素的答案&#39;应该可能是你的问题标题。

<强>答案:

$('#paragraph').click(function() {
    $('#paragraph').hide(500);
});

同样在你的小提琴中你还没有加载jQuery!

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>

这是你最新的工作小提琴。

https://jsfiddle.net/0xhg57e4/3/