大家好,我无法隐藏我的段落,我不知道为什么。
和我的代码:
<!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();
});
答案 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>
这是你最新的工作小提琴。