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.
<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>