1. 程式人生 > >隱藏html元素

隱藏html元素

jquer php .com meta query nbsp cti scrip on()

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ceshi</title>
<script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>如果你點我,我就會消失。</p>
<p>繼續點我!</p>
<p>接著點我!</p>
</body>
</html>

/*

$(this).hide() 隱藏當前的 HTML 元素。

$("p").hide() 隱藏所有 <p> 元素。

$(".test").hide() 隱藏所有 class="test" 的元素。

$("#test").hide() 隱藏 id="test" 的元素

*/

隱藏html元素