jQuery01 元件隱藏+元件選取+事件指定
jQuery01 元件隱藏+元件選取+事件指定
資料來源:http://www.w3school.com.cn/jquery/index.asp
code2html:http://tohtml.com/
<!DOCTYPE html>
<html>
<head>
<title>jQuery 元件隱藏+元件選取+事件指定</title>
<!--資料來源 http://www.w3school.com.cn/jquery/index.asp-->
<scriptsrc="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>如果您点击我,我会消失。</p>
<p>点击我,我会消失。</p>
<p>也要点击我哦。</p>
</body>
</html>