JQuery 텍스트 숨기기

1682 단어 jquery
주의:jquery-1.7.1을 추가합니다.js와 jquery-1.7.1.min.js 파일 2개
 
<html>
<head>
<script type="text/javascript" src="jquery-1.7.1.js"></script>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript">
	$(document).ready(function() {
        $("p").click(
		function(){
			  	$(this).hide();
			}
		)
    });
</script>

<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>
	
<body>
<p>If you click on me, I will dispperar</p>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">Click me</button>
</body>
</html>

 
"If you click on me, I will dispperar"를 클릭하면 텍스트가 숨겨집니다.
모든 텍스트를 숨기려면 클릭 me 을 클릭합니다.
표시하려면 show 방법을 호출하십시오.$("p").show();
 
2. 구글의 인터넷 CDN을 사용하면 js를 로컬로 다운로드할 필요가 없습니다.
http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
 
Microsoft CDN 사용
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery
/jquery-1.7.1.min.js"></script>

좋은 웹페이지 즐겨찾기