Skip to main content

Posts

Showing posts from November 19, 2021

Thực hành - lab_jquery_03

Untitled Document Tin xã hội Thể thao Du lịch Xã hội Sức khỏe Âm nhạc Thế giới web Tools Links Tempalte Document Nghệ thuật sống Sống đẹp Thư giãn Thơ hay Đố vui //Code <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.js"></script> <style> #menu { width:180px; background-color:#cc6; } #menu .theloai { background-color:#F63; color:#FFFFFF; display:block; padding-to...

Thực hành - lab_jquery_02

Untitled Document TEO //code <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.js"></script> </head> <body> <div id="teo">TEO</div>     <div id="ketqua" style="color:#FF0000"></div>     <script type="text/javascript"> $(document).ready(function(){ $("#teo").click(function(){ $("#ketqua").append("Bạn vừa click vào teo); }); });     </script> </body> </html>

Thực hành - lab_jquery_01

Untitled Document Nguyen van teo Nguyen van ti Nguyen van teo Nguyen van ti Nguyen van teo Nguyen van ti //code <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.js"></script> </head> <body> <div id="teo">Nguyen van teo</div> <div class="ti">Nguyen van ti</div> <div id="teo">Nguyen van teo</div> <div class="ti">Nguyen van ti</div> <div id="teo">Nguyen van teo</div> <div class="ti">Nguyen van ti</div> <script type="text/javascript">     $(document).ready(function(){ $("#teo").click(function(){ alert("Bạn vừa click vào id teo"); }); $(".ti").click(function(){ ale...