Skip to main content

Posts

Thực hành lab_jquery_04 - PHẦN 2

Untitled Document Thêm loại tin 1 2 3 4 5 idLT Tên lloai tin Ẩn hiện Thứ tự Thể loại Action 3 Du lịch Đang hiện 2 Tin xã hôi | Chỉnh | Xóa | 9 Xã hội Đang hiện 3 Tin xã hội | Chỉnh | Xóa | //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> ...

Thực hành lab_jquery_04 - PHẦN 1

Untitled Document Thêm loại tin 1 2 3 4 5 idLT Tên lloai tin Ẩn hiện Thứ tự Thể loại Action 3 Du lịch Đang hiện 2 Tin xã hôi | Chỉnh | Xóa | 9 Xã hội Đang hiện 3 Tin xã hội | Chỉnh | Xóa | //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> ...

lab_jquery_04 Ngày 2

Thao tác Jquery với thẻ <input name=”tên”> - Tạo table như hình H02 - Xây dựng <table> - Tạo CSS a. Thao tac Jquery với CSS, đưa con trỏ vào đổi màu nền, màu chữ. b. Thao tác Jquery với thẻ input c. Thao tác Jquery chỉnh sửa dữ liệu tất cả các checkbox được chọn - Chỉnh tất cả - xóa tất cả. - Thực hiện Jquery chỉnh hết dữ liệu tất cả checkbox được chọn Kết quả giá trị được được lấy xử lý từ checkbox có value là 3 và 9. - Thực hiện Jquery xóa hết dữ liệu của các checkbox được chọn. Kết quả giá trị được được lấy xử lý từ checkbox có value là 3 và 9.

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