Javascript

Jquery import etme ve deneme

1. YOL jquery.com/download/ sitesinden Download the compressed, production jQuery 3.3.1 indiriyoruz.

js klasoru açıp içine atalım. Yolu js/jquery-3.3.1.min.js şeklinde olucak.

2.YOL jquery CDN yazıp bu koduda kullanabilirsiniz.
jquery-cdn kullanımı

<html>
<head>
	<title>
		Jquery import etme ve satırlara tıklanınca görünmez hale getirerek test etme
	</title>

	<!-- LOCAL DEN IMPORT ETME 1.YOL !-->	
	<script type="text/javascript" src="js/jquery-3.3.1.min.js"> </script> 

	<!-- CDN  Uzaktan IMPORT ETME    2.YOL  ==>
	<script
  src="https://code.jquery.com/jquery-3.3.1.js"
  integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS4auK4Pfzbmcu0="
  crossorigin="anonymous"></script> !-->
	
</head>
<body>
	<script type="text/javascript">

		$(document).ready(function() {
			$("p").click(function() {

				$(this).hide();
			});
		});

	</script>


	<p>deneme1 buraya tıkla ve sil test et</p>
	<p>deneme2 buraya tıkla ve sil test et</p>
	<p>deneme3 buraya tıkla ve sil test et</p>
	<p>deneme4 buraya tıkla ve sil test et</p>


</body>
</html>



İlgili Makaleler

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

Başa dön tuşu