Hướng dẫn dom javascript

Javascript là một ngôn ngữ được sử dụng trong các trình duyệt Browser nên nó đóng một vai trò khá quan trọng trong các ứng dụng website. Và nhiệm vụ của Javascript là thao tác với các tài liệu HTML kết hợp với các cú pháp riêng của nó để tạo nên sự ảo diệu của trang web. Để thao tác được với các thẻ HTML thì nó phải thông qua một cơ chế ta gọi là DOM.

Vậy trong bài viết này chúng ta cùng tìm hiểu DOM là gì và cách thao tác với DOM bằng Js nhé!

DOM là gì?

DOM là viết tắt của chữ Document Object Model, dịch tạm ra là mô hình các đối tượng trong tài liệu HTML.  Như các bạn biết trong mỗi thẻ HTML sẽ có những thuộc tính (Properties) và có phân cấp cha - con với các thẻ HTML khác. Sự phân cấp và các thuộc tính của thẻ HTML này ta gọi là selector và trong DOM sẽ có nhiệm vụ xử lý các vấn đề như đổi thuộc tính của thẻ, đổi cấu trúc HTML của thẻ,... DOM được dùng để truy xuất các tài liệu dạng HTML và XML, có dạng một cây cấu trúc dữ liệu, và thông thường mô hình DOM độc lập với hệ điều hành và dựa theo kỹ thuật lập trình hướng đối tượng để mô tả tài liệu.

Bạn có thể tham khảo hình vẽ dưới đây để hiểu rõ hơn về DOM.

Hướng dẫn dom javascript

Chúng ta có thể thấy tất cả các thẻ HTML sẽ được quản lý trong đối tượng document, thẻ cao nhất là thẻ html, tiếp theo là phân nhánh body và head. Bên trong head thì có những thẻ như styletitle, ... và bên trong body thì là vô số các thẻ HTML khác. Như vậy trong Javascript, để thao tác với các thẻ HTML ta phải thông qua đối tượng document, để cho nóng thì các bạn xem ví dụ bên dưới trước khi tìm hiểu tiếp nhé :D 


  
    

Trong ví dụ này mình có sử dụng một đoạn code xử lý javascript như sau:

document.getElementById("main-content").innerHTML = "Chào mừng các bạn đến với website học lập trình online codelearn.io"

Và đoạn code này có ý nghĩa rằng tìm thẻ có id="main-content"và gán nội dung HTML bên trong của thẻ này là dòng chữ "Chào mừng các bạn đến với website học lập trình online codelearn.io".

Với DOM, JavaScript được tất cả sức mạnh cần thiết để tạo ra HTML động:

  • JavaScript có thể thay đổi tất cả các phần tử HTML trong trang
  • JavaScript có thể thay đổi tất cả các thuộc tính HTML trong trang
  • JavaScript có thể thay đổi tất cả các phong cách CSS trong trang
  • JavaScript có thể loại bỏ các yếu tố HTML và thuộc tính hiện tại
  • JavaScript có thể thêm các yếu tố HTML mới và các thuộc tính
  • JavaScript có thể phản ứng với tất cả các sự kiện HTML hiện trong trang
  • JavaScript có thể tạo ra các sự kiện HTML mới trong trang

HTML DOM là gì?

HTML DOM là một chuẩn mô hình object và programming interface cho HTML. nó định nghĩa:

  • HTML elements như là objects
  • properties của tất cả HTML elements
  • methods để truy cập đến tất cả HTML elements
  • events cho tất cả HTML elements

HTML DOM là một tiêu chuẩn cho phép bạn thực hiện những công việc thao tác với bất kì một trang web: get, change, add, or delete các thành phần của HTML.

Cây cấu trúc DOM

Nút

Đối với HTML DOM, cấu trúc dạng cây gọi là DOM Tree có nghĩa là mọi thành phần đều được xem là 1 nút (node), được biểu diễn trên 1 cây . Các phần tử khác nhau sẽ được phân loại nút khác nhau nhưng quan trọng nhất là 3 loại: nút gốc (document node), nút phần tử (element node), nút văn bản (text node).

  • Nút gốc: chính là tài liệu HTML, thường được biểu diễn bởi thẻ .
  • Nút phần tử: biểu diễn cho 1 phần tử HTML.
  • Nút văn bản: mỗi đoạn kí tự trong tài liệu HTML, bên trong 1 thẻ HTML đều là 1 nút văn bản. Đó có thể là tên trang web trong thẻ , tên đề mục trong thẻ <h2>, hay một đoạn văn trong thẻ <p>.</span></li><li><span>Ngoài ra còn có <strong>nút thuộc tính</strong> (attribute node) và <strong>nút chú thích</strong> (comment node).</span></li></ul><h4><span>Quan hệ giữa các nút</span></h4><ul><li><span>Nút gốc (document) luôn là nút đầu tiên.</span></li><li><span>Tất cả các nút không phải là nút gốc đều chỉ có 1 nút cha (parent).</span></li><li><span>Một nút có thể có một hoặc nhiều con, nhưng cũng có thể không có con nào.</span></li><li><span>Những nút có cùng nút cha được gọi là các nút anh em (siblings).</span></li><li><span>Trong các nút anh em, nút đầu tiên được gọi là con cả (firstChild) và nút cuối cùng là con út (lastChild).</span></li></ul><p><span>Ta hãy cùng xem ví dụ cây cấu trúc DOM bên dưới: <div class="imgBox"><img alt="Hướng dẫn dom javascript" data-orgimg="https://sg.cdnki.com/huong-dan-dom-javascript---aHR0cHM6Ly9jb2RlbGVhcm4uaW8vTWVkaWEvRGVmYXVsdC9Vc2Vycy9LaG9hYS9JbWFnZS9kb21fanMvVFAtUGhhbi1jYXAtRE9NLVRyZWUucG5n.webp" ></img></div></span></p><ul><li><span>Nút gốc là <html>.</span></li><li><span>2 nút anh em <head> và <body> là anh em vì đều là nút con của <html>.</span> </li><li>Nút <body> có 3 con, trong đó <h2> là con cả và thẻ <p> thứ 2 là con út.</li><li><span>Nút phần tử <a> có 2 con, trong đó có 1 nút văn bản và 1 nút thuộc tính.</span><span></span></li></ul><h3 id="thao-tac-voi-dom">Thao tác với DOM</h3><p><span>Việc thao tác với DOM cho bạn sức mạnh “thay đổi thế giới”, vì mọi nội dung đều có thể được cập nhật động thông qua các thuộc tính và phương thức của DOM. Tất tần tật từ thay đổi định dạng chữ, nội dung chữ đến thay đổi cấu trúc các nút và cả thêm nút mới, bạn đều có thể làm được. Do đó, để sáng tạo nội dung tốt, bạn cần hiểu rõ cách thao tác DOM và ý nghĩa của từng thuộc tính, phương thức.</span></p><div style="width:100%; margin:20px auto; display:block"> <ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8587332220"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div></p><h4><span>Các Thuộc tính và Phương thức thường gặp</span></h4><h4><span>Thuộc tính: </span></h4><ul><li><span><strong>id:</strong> Định danh – là duy nhất cho mỗi phần tử nên thường được dùng để truy xuất DOM trực tiếp và nhanh chóng.</span></li><li><span><strong>className:</strong> Tên lớp – Cũng dùng để truy xuất trực tiếp như id, nhưng 1 className có thể dùng cho nhiều phần tử.</span></li><li><span><strong>tagName:</strong> Tên thẻ HTML.</span></li><li><span><strong>innerHTML:</strong> Trả về mã HTML bên trong phần tử hiện tại. Đoạn mã HTML này là chuỗi kí tự chứa tất cả phần tử bên trong, bao gồm các nút phần tử và nút văn bản.</span></li><li><span><strong>outerHTML:</strong> Trả về mã HTML của phần tử hiện tại. Nói cách khác, <code>outerHTML = tagName + innerHTML.</code></span></li><li><span><strong>textContent:</strong> Trả về 1 chuỗi kí tự chứa nội dung của tất cả nút văn bản bên trong phần tử hiện tại.</span></li><li><span><strong>attributes:</strong> Tập các thuộc tính như id, name, class, href, title…</span></li><li><span><strong>style:</strong> Tập các định dạng của phần tử hiện tại</span></li><li><span><strong>value:</strong> Lấy giá trị của thành phần được chọn thành một biến.</span></li></ul><h4><span>Phương thức:</span></h4><ul><li><span><strong>getElementById(id):</strong> Tham chiếu đến 1 nút duy nhất có thuộc tính <code>id </code>giống với id cần tìm.</span></li><li><span><strong>getElementsByTagName(tagname):</strong> Tham chiếu đến tất cả các nút có thuộc tính <code>tagName</code> giống với tên thẻ cần tìm, hay hiểu đơn giản hơn là tìm tất cả các phần tử DOM mang thẻ HTML cùng loại. Nếu muốn truy xuất đến toàn bộ thẻ trong tài liệu HTML thì hãy sử dụng <code>document.getElementsByTagName('*').</code></span></li><li><span><strong>getElementsByName(name):</strong> Tham chiếu đến tất cả các nút có thuộc tính <code>name</code> cần tìm.</span></li><li><span><strong>getAttribute(attributeName):</strong> Lấy giá trị của thuộc tính.</span></li><li><span><strong>setAttribute(attributeName, value):</strong> Sửa giá trị của thuộc tính.</span></li><li><span><strong>appendChild(node):</strong> Thêm 1 nút con vào nút hiện tại.</span></li><li><span><strong>removeChild(node):</strong> Xóa 1 nút con khỏi nút hiện tại.</span><span></span><span></span><span></span></li></ul><p><span>Mặt khác, các phần tử DOM đều là các nút trên cây cấu trúc DOM. Chúng sở hữu thêm các thuộc tính quan hệ để biểu diễn sự phụ thuộc giữa các nút với nhau. Nhờ các thuộc tính quan hệ này, chúng ta có thể truy xuất DOM gián tiếp dựa trên quan hệ và vị trí của các phần tử:</span></p><h4><span>Thuộc tính quan hệ:</span></h4><ul><li><span><strong>parentNode:</strong> Nút cha</span></li><li><span><strong>childNodes:</strong> Các nút con</span></li><li><span><strong>firstChild:</strong> Nút con đầu tiên</span></li><li><span><strong>lastChild:</strong> Nút con cuối cùng</span></li><li><span><strong>nextSibling:</strong> Nút anh em liền kề sau</span></li><li><span><strong>previousSibling:</strong> Nút anh em liền kề trước</span></li></ul><p><span>Bạn có thể xem danh sách đầy đủ ở W3SCHOOLS</span></p><h3 id="truy-xuat-dom">Truy xuất DOM</h3><h4><span>Truy xuất gián tiếp:</span></h4><p><span>Mỗi nút trên cây DOM đều có 6 thuộc tính quan hệ để giúp bạn truy xuất gián tiếp theo vị trí của nút:</span></p><ul><li><span><strong>Node.parentNode</strong>: tham chiếu đến nút cha của nút hiện tại, và nút cha này là duy nhất cho mỗi nút. Do đó, nếu bạn cần tìm nguồn gốc sâu xa của 1 nút, bạn phải nối thuộc tình nhiều lần, ví dụ <code>Node.parentNode.parentNode.</code></span></li><li><span><strong>Node.childNodes</strong>: tham chiếu đến các nút con trực tiếp của nút hiện tại, và kết quả là 1 mảng các đối tượng. Lưu ý rằng, các nút con không bị phân biệt bởi loại nút, nên kết quả mảng trả về có thể bao gồm nhiều loại nút khác nhau.</span></li><li><span><strong>Node.firstChild</strong>: tham chiếu đến nút con đầu tiên của nút hiện tại, và tương đương với việc gọi <code>Node.childNodes[0].</code></span></li><li><span><strong>Node.lastChild</strong>: tham chiếu đến nút con cuối cùng của nút hiện tại, và tương đương với việc gọi <code>Node.childNodes[Element.childNodes.length-1]</code>.</span></li><li><span><strong>Node.nextSibling</strong>: tham chiếu đến nút anh em nằm liền kề sau với nút hiện tại.</span></li><li><span><strong>Node.previousSibling</strong>: tham chiếu đến nút anh em nằm liền kề trước với nút hiện tại.  </span></li></ul><p><span> <div class="imgBox"><img alt="Hướng dẫn dom javascript" data-orgimg="https://sg.cdnki.com/huong-dan-dom-javascript---aHR0cHM6Ly9jb2RlbGVhcm4uaW8vTWVkaWEvRGVmYXVsdC9Vc2Vycy9LaG9hYS9JbWFnZS9kb21fanMvdHBfZG9tX3RyZWVfdHJhdmVyc2FsLnBuZw==.webp" ></img></div></span></p><h4>Truy xuất trực tiếp:</h4><p><span>Truy xuất trực tiếp sẽ nhanh hơn, và đơn giản hơn khi bạn không cần phải biết nhiều về quan hệ và vị trí của nút. Có 3 phương thức để bạn truy xuất trực tiếp được hỗ trợ ở mọi trình duyệt:</span></p><ul><li><code><span>document.getElementById('id_cần_tìm')</span></code></li><li><code><span>document.getElementsByTagName('div')</span></code></li><li><code><span>document.getElementsByName('tên_cần_tìm')</span></code></li></ul><p><code><span> <div class="imgBox"><img alt="Hướng dẫn dom javascript" data-orgimg="https://sg.cdnki.com/huong-dan-dom-javascript---aHR0cHM6Ly9jb2RlbGVhcm4uaW8vTWVkaWEvRGVmYXVsdC9Vc2Vycy9LaG9hYS9JbWFnZS9kb21fanMvVHJ1eS14dWF0LURPTS10cnVjLXRpZXAucG5n.webp" ></img></div></span></code></p><h3 id="tao-moi-them-xoa-thay-the-phan-tu-html-bang-js">Tạo mới, thêm, xoá, thay thế phần tử HTML bằng JS</h3><h4>Tạo một phần tử HTML</h4><p>Chúng ta có thể tạo mới 1 phần tử HTML bằng các cách sau:</p><div style="width:100%; margin:20px auto; display:block"> <ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8587332220"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div></p><ul><li><code>document.createElement(tag_name)</code>: Tạo ra phần tử có thẻ tag_name như a, p, div,...</li><li><code>element.cloneNode()</code>: Tạo ra 1 phần tử bằng cách nhân bản phần tử chỉ ra (element)</li><li><code>document.createTextNode(text)</code>: Tạo ra 1 nút văn bản</li></ul><pre><code>var node = document.createTextNode("Create element"); var linknode = document.createElement("a"); linknode.href = "https://codelearn.io/"; linknode.innerText = "codelearn.io";</code></pre><p>Ví dụ trên sẽ tạo ra 1 nút text, nhưng nó chưa hiển thị cho đến khi bạn gắn phần tử đó vào HTML document để nó là phần tử con của một phần tử nào đó, có một số cách để gắn phần tử tạo ra từ Javascript vào DOM HTML.</p><ul><li><code>element.appendChild(newNode)</code>: Thêm phần tử <code>newNode</code> vào phần tử <code>element</code>, nó trở thành phần tử con sau cùng của <code>element</code>.</li><li><code>element.insertBefore(newNode, node2)</code>: Chèn phần tử <code>newNode</code> nằm trước <code>node2</code>.</li><li><code>element.replaceChild(newNode, oldNode)</code>: Thay thế phần tử <code>oldNode</code> bằng phần tử <code>newNode</code></li></ul><p>Ví dụ dưới đây sẽ tạo ra một phần tử đoạn văn p sau đó chèn nó vào phần tử div đang có sẵn trong DOM HTML</p><pre><code><div id ="demo">nội dung ví dụ</div> <button onclick="add_child()">KẾT QUẢ</button> <script> function add_child() { //tạo phần tử p var p = document.createElement("p"); //tạo phần tử text var node = document.createTextNode("Some new text"); //gắn node vào p p.appendChild(node); //Thay đổi một số thuộc tính của p p.appendChild(node); p.style.backgroundColor = 'red'; p.style.padding = "10px"; p.style.color = "white"; var div = document.getElementById("demo"); //gắn p vào div div.appendChild(p); } </script></code></pre><h4>Xóa phần tử HTML</h4><p>Để loại bỏ phần tử HTML, bạn chọn phần tử cha rồi sử dụng phương thức<span> </span><code>removeChild(node)</code></p><pre><code><div id="demo"> <p id="p1">This is a paragraph.</p> <p id="p2">This is another paragraph.</p> </div> <script> var parent = document.getElementById("demo"); var child = document.getElementById("p1"); parent.removeChild(child); </script></code></pre><p>Ví dụ trên sẽ xóa bỏ phần tử đoạn văn thứ nhất</p><p>Bạn có thể sử dụng thủ thuật lấy thuộc tính<span> </span><code>parentNode</code><span> </span>để bỏ qua bước tìm phần tử cha trong DOM:<span> </span><code>child.parentNode.removeChild(child);</code></p><pre><code><div id="demo"> <p id="p1">This is a paragraph.</p> <p id="p2">This is another paragraph.</p> </div> <script> var child = document.getElementById("p1"); child.parentNode.removeChild(child); </script></code></pre><h4>Thay thế phần tử HTML</h4><p><span>Để thay thể một phần tử bằng một phần tử khác dùng cú pháp <code>element.replaceChild(newNode, oldNode)</code>. Trong đó </span><code>element</code><span> là nút cha</span></p><pre><code><div id="demo"> <p id="p1">This is a paragraph.</p> <p id="p2">This is another paragraph.</p> </div> <script> var p = document.createElement("p"); p.innerText = 'New Text'; var parent = document.getElementById("demo"); var child = document.getElementById("p1"); parent.replaceChild(p, child); </script></code></pre><h3 id="tam-ket">Tạm kết</h3><p><span>Như vậy chúng ta đã cùng nhau tìm hiểu các khái niệm cơ bản về DOM và cách thao tác DOM. Mặc dù đó chỉ là những kiến thức bề mặt, nhưng bạn cũng có thể thấy DOM quan trọng và lợi hại như thế nào. Nếu các bạn thấy bài viết hữu ích hãy rate 5* và share cho mọi người tham khảo!</span></p><p><span>Hãy để lại comment để mình có thể hoàn thiện bản thân hơn trong tương lai. Cám ơn các bạn! </span></p><div class='paramage'></div> <div class="contenBreak"></div></p></div> <div class="readmore_content_exists"><button id="readmore_content"><span class="arrow"><span></span></span>Đọc tiếp</button></div> </td></tr></table> <script async src="/dist/js/lazyhtml.min.js" crossorigin="anonymous"></script> <div class="lazyhtml" data-lazyhtml> <script type="text/lazyhtml"> <div class="youtubeVideo"><h3>Video liên quan</h3> <iframe width="560" height="315" src="https://www.youtube.com/embed/CNPEBI64DQE?controls=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe> </div> </script> </div> <div class="mt-3"> <div class="tags"> <a href="https://biquyetxaynha.com/tags/programming" class="tag-link">programming</a> <a href="https://biquyetxaynha.com/tags/javascript" class="tag-link">javascript</a> <a href="https://biquyetxaynha.com/tags/DOM w3school" class="tag-link">DOM w3school</a> <a href="https://biquyetxaynha.com/tags/DOM HTML" class="tag-link">DOM HTML</a> <a href="https://biquyetxaynha.com/tags/Dom la gì" class="tag-link">Dom la gì</a> </div> </div> <div class="post-tools"> <button data-postid="huong-dan-dom-javascript" class="btn btn-answerModalBox"><img class="mr-1" alt="Hướng dẫn dom javascript" src="/dist/images/svg/messages_16.svg">Reply</button> <button data-postid="huong-dan-dom-javascript" data-vote="up" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn dom javascript" src="/dist/images/svg/face-smile_16.svg">6</button> <button data-postid="huong-dan-dom-javascript" data-vote="down" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn dom javascript" src="/dist/images/svg/poo_16.svg">0</button> <button class="btn"><img class="mr-1" alt="Hướng dẫn dom javascript" src="/dist/images/svg/facebook_16.svg"> Chia sẻ</button> </div> </div><!-- end question-post-body --> </div><!-- end question-post-body-wrap --> </div><!-- end question --> <div id="answers_huong-dan-dom-javascript" class="answers"> </div><!-- end answer-wrap --> <div class="entryFooter"> <div class="footerLinkAds"><div style="width:100%; margin:0 auto;"> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8199996671"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="footerRelated"><div class="postRelatedWidget"> <h2>Bài Viết Liên Quan</h2> <div class="questions-snippet layoutNews border-top border-top-gray"> <div class="max-width:840px"> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-fb-44+c1-1p-ns" data-ad-client="ca-pub-4987931798153631" data-ad-slot="7655066491"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/hoi-nghi-ianta-khong-thong-qua-quyet-dinh-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/bsdWssw3SMA/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLB6hc3VUJBQtRA1CzaisMcbOXrDBQ" alt="Hội nghị ianta không thông qua quyết định nào năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/hoi-nghi-ianta-khong-thong-qua-quyet-dinh-nao-nam-2024">Hội nghị ianta không thông qua quyết định nào năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/thu-hai-tieng-anh-doc-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/cP1Mi8HVAVA/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4Af4FgALgA4oCDAgAEAEYRiBlKCYwDw==&rs=AOn4CLBH651tdkazyI3jmJOTNUe7KGHcZw" alt="Thứ hai tiếng anh đọc là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/thu-hai-tieng-anh-doc-la-gi-nam-2024">Thứ hai tiếng anh đọc là gì năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/là ai" class="tag-link">là ai</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Là gì" class="tag-link">Là gì</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Tiếng anh" class="tag-link">Tiếng anh</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/chi-phi-tien-thuongr-khong-duoc-tru-khi-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/8-YstDNpF7I/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYEiBkKHIwDw==&rs=AOn4CLA66Aj_KEvJMsnoHY4Sn5uTxoxa5g" alt="Chi phí tiền thươngr không được trừ khi nào năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/chi-phi-tien-thuongr-khong-duoc-tru-khi-nao-nam-2024">Chi phí tiền thươngr không được trừ khi nào năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/400-trieu-nen-mua-o-to-cu-7-cho-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/UjXCZAn94Z4/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAjEsoJmH_MHimSm9Ya82OD5e4Wew" alt="400 triệu nên mua ô tô cũ 7 chỗ nào năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/400-trieu-nen-mua-o-to-cu-7-cho-nao-nam-2024">400 triệu nên mua ô tô cũ 7 chỗ nào năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bang-tinh-toan-lua-chon-thiet-bi-dien-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/bM1nzJv9L4M/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDB7Gc7OL7OrCHpNdB94qdheomE_w" alt="Bảng tính toán lựa chọn thiết bị điện năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bang-tinh-toan-lua-chon-thiet-bi-dien-nam-2024">Bảng tính toán lựa chọn thiết bị điện năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/huong-dan-giai-bai-tap-luu-hoang-tri-lop-8-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/XrzQzQsfMk8/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYUCBaKGUwDw==&rs=AOn4CLCTJELuKQl41zJC2VvMZUUeggs0iw" alt="Hướng dẫn giải bài tập lưu hoàng trí lớp 8 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/huong-dan-giai-bai-tap-luu-hoang-tri-lop-8-nam-2024">Hướng dẫn giải bài tập lưu hoàng trí lớp 8 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Mẹo Hay" class="tag-link">Mẹo Hay</a> <a href="/tags/Hướng dẫn" class="tag-link">Hướng dẫn</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/sinh-ngay-20-11-la-cung-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/UT92LIWOBmU/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBz7E0fvk51A2sBzp1j-fW5U22SBQ" alt="Sinh ngày 20 11 là cung gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/sinh-ngay-20-11-la-cung-gi-nam-2024">Sinh ngày 20 11 là cung gì năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/là ai" class="tag-link">là ai</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-tu-luan-chuong-halogen-co-dap-an-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/rwUWaaJMvlc/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLACm8HrRcSR42jTiBR5x2D0tIC_ZQ" alt="Bài tập tự luận chương halogen có đáp an năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-tu-luan-chuong-halogen-co-dap-an-nam-2024">Bài tập tự luận chương halogen có đáp an năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> <a href="/tags/Dạng Hóa 10" class="tag-link">Dạng Hóa 10</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/thang-1-o-han-quoc-la-mua-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/rykgtjSnTSo/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBAdTi1FkpH4wUjNbNDPxf2UF3qhg" alt="Tháng 1 ở hàn quốc là mùa gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/thang-1-o-han-quoc-la-mua-gi-nam-2024">Tháng 1 ở hàn quốc là mùa gì năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/là ai" class="tag-link">là ai</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/top-20-soai-ca-ngon-tinh-trung-quoc-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/NY2DbsJDDLc/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCdu7-t9PeU68IEGJuaxleMSD4BPw" alt="Top 20 soái ca ngôn tình trung quốc năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/top-20-soai-ca-ngon-tinh-trung-quoc-nam-2024">Top 20 soái ca ngôn tình trung quốc năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Top List" class="tag-link">Top List</a> <a href="/tags/Top" class="tag-link">Top</a> </div> </div> </div> </div><!-- end media --> <div class="max-width:840px"> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-fb-44+c1-1p-ns" data-ad-client="ca-pub-4987931798153631" data-ad-slot="7655066491"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/hang-hoa-co-duoc-xem-la-tai-san-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/GSlnyiQDQ5M/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAUcE4gJ9ju-PRfRFnpSCnDtKcwYQ" alt="Hàng hóa có được xem là tài sản năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/hang-hoa-co-duoc-xem-la-tai-san-nam-2024">Hàng hóa có được xem là tài sản năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Bán tài sản" class="tag-link">Bán tài sản</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/con-le-le-la-con-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/a_EsJMJaZTA/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDLRB3-5cJRhU1ZYXB-U9A7JaqFRQ" alt="Con le le là con gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/con-le-le-la-con-gi-nam-2024">Con le le là con gì năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/là ai" class="tag-link">là ai</a> <a href="/tags/Trứng le le" class="tag-link">Trứng le le</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cac-dang-toan-thi-giua-hoc-ki-1-lop-8-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/SKJw_HoezQI/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLA6j367nbc8HSAYaTCK6Drfnptz9Q" alt="Các dạng toán thi giữa học kì 1 lớp 8 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cac-dang-toan-thi-giua-hoc-ki-1-lop-8-nam-2024">Các dạng toán thi giữa học kì 1 lớp 8 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Học" class="tag-link">Học</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-trac-nghiem-andehit-xeton-co-dap-an-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/Qi5JLkOp_Mo/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLAc6qhUHWK_5CoZzs8WSDHvd-J1qA" alt="Bài tập trắc nghiệm andehit-xeton có đáp án năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-trac-nghiem-andehit-xeton-co-dap-an-nam-2024">Bài tập trắc nghiệm andehit-xeton có đáp án năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/goc-180-do-la-goc-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/HJBMk0SMzCk/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Ac4FgAKACooCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLB8u34W7mSHWFdxUPWg65T3ilgEDA" alt="Góc 180 độ là góc gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/goc-180-do-la-goc-gi-nam-2024">Góc 180 độ là góc gì năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/là ai" class="tag-link">là ai</a> <a href="/tags/Góc là gì" class="tag-link">Góc là gì</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/hbsab-dinh-luong-cobas-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/6HAjQdfh1BA/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCleIHbA5OjjIsBzCr3hlpU-Dm7nA" alt="Hbsab định lượng cobas là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/hbsab-dinh-luong-cobas-la-gi-nam-2024">Hbsab định lượng cobas là gì năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/là ai" class="tag-link">là ai</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Là gì" class="tag-link">Là gì</a> <a href="/tags/hbsab > 1000" class="tag-link">hbsab > 1000</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/2-pham-van-coi-ap-5-xpham-van-coi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/b5dqGVh1TEY/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4AYwCgALgA4oCDAgAEAEYZSBlKEwwDw==&rs=AOn4CLBL3-HkR0O9b8hx1OgCGc4K1ELVIA" alt="2 phạm văn cội ấp 5 x.phạm văn cội năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/2-pham-van-coi-ap-5-xpham-van-coi-nam-2024">2 phạm văn cội ấp 5 x.phạm văn cội năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Xã Nhuận Đức" class="tag-link">Xã Nhuận Đức</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-van-ta-canh-cho-ngay-tet-lop-6-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/TTcSZc6sbt0/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLC34NExOp6guMm_qIXQcEQFBgWJmA" alt="Bài văn tả cảnh chợ ngày tết lớp 6 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-van-ta-canh-cho-ngay-tet-lop-6-nam-2024">Bài văn tả cảnh chợ ngày tết lớp 6 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/deo-nhan-ty-huu-o-ngon-tay-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/2IATU4MNji8/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC0JIO_M7hbqCMDzzvwRRErH24_gA" alt="Đeo nhẫn tỳ hưu ở ngón tay nào năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/deo-nhan-ty-huu-o-ngon-tay-nao-nam-2024">Đeo nhẫn tỳ hưu ở ngón tay nào năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/tre-tren-1-tuoi-an-vang-sua-nhu-the-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/Z4QBcoM_o_8/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDJzmwxWaBHBfWsQzgl7O_XUEqBIw" alt="Trẻ trên 1 tuổi ăn váng sữa như thế nào năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/tre-tren-1-tuoi-an-vang-sua-nhu-the-nao-nam-2024">Trẻ trên 1 tuổi ăn váng sữa như thế nào năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Thế nào" class="tag-link">Thế nào</a> </div> </div> </div> </div><!-- end media --> </div> </div></div> </div> </div> </div><!-- end question-main-bar --> </div><!-- end col-lg-9 --> <div class="postContentRight"> <div class="sidebar"> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-13 pb-3 text-center">Quảng Cáo</h4> <div class="mb-4 mx-auto" style="text-align:center"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8742637402" data-ad-format="auto" data-full-width-responsive="true"> </ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="card card-item"> <div class="card-body"> <h3 class="fs-17 pb-3">Có thể bạn quan tâm</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/sot-nong-lanh-ve-dem-la-benh-gi-nam-2024">Sốt nóng lạnh về đêm là bệnh gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/CardiovascularOutage" class="author">CardiovascularOutage</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/bai-hat-ve-tham-que-em-vu-van-toan-nam-2024">Bài hát về thăm quê em vũ văn toàn năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/WitheredWeariness" class="author">WitheredWeariness</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/cong-nang-dac-di-la-gi-nam-2024">Công năng đặc dị là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/SunkenNuisance" class="author">SunkenNuisance</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/loi-khong-the-click-dup-chuot-trai-tren-macbook-nam-2024">Lỗi không thể click đúp chuột trái trên macbook năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ThankfulAdultery" class="author">ThankfulAdultery</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/baai-1-trang-127-sgk-toan-lop-6-nam-2024">Baài 1 trang 127 sgk toán lớp 6 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/NationwideFeces" class="author">NationwideFeces</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/cach-sua-loi-may-cham-cong-khong-ket-noi-duoc-nam-2024">Cách sửa lỗi máy chấm công không kết nối được năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/UninterestedProrogation" class="author">UninterestedProrogation</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/son-bbia-mau-17-la-mau-gi-nam-2024">Son bbia màu 17 là màu gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ReigningFrenchman" class="author">ReigningFrenchman</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/cac-tiet-muc-van-nghe-khong-can-chuan-bi-nhieu-nam-2024">Các tiết mục văn nghệ không cần chuẩn bị nhiều năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/TypedEnlightenment" class="author">TypedEnlightenment</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/bai-tap-chon-dang-dung-cua-tu-tieng-anh-247-nam-2024">Bài tập chọn dạng đúng của từ tieng anh 247 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/LoadedScrimmage" class="author">LoadedScrimmage</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/nghiem-tam-thuong-va-khong-tam-thuong-la-gi-nam-2024">Nghiệm tầm thường và không tầm thường là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/PretentiousInevitability" class="author">PretentiousInevitability</a> </small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="card card-item cardTopList"> <div class="card-body"> <h3 class="fs-17 pb-3">Toplist được quan tâm</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="topListNum">#1</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-tap-ban-do-lop-8-bai-31-2023">Top 9 tập bản đồ lớp 8 bài 31 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#2</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-6-ket-qua-thi-hsg-da-nang-2022-2023">Top 6 kết quả thi hsg đà nẵng 2022 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#3</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-tu-nhua-dai-loan-4-canh-3d-2023">Top 9 tủ nhựa đài loan 4 cánh 3d 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#4</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-chat-khi-co-the-lam-mat-mau-dung-dich-nuoc-brom-la-a-so2-b-co2-c-o2-d-hcl-2023">Top 9 chất khí có thể làm mất màu dung dịch nước brom là: a. so2. b. co2. c. o2. d. hcl. 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#5</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-8-tim-viec-lam-tien-phay-bao-q7-2023">Top 8 tìm việc làm tiện, phay bảo q7 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#6</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-3-toi-xuyen-thanh-tieu-kieu-the-cua-lao-dai-phan-2-2023">Top 3 tôi xuyên thành tiểu kiều the của lão đại phản 2 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#7</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-doi-moi-phong-cach-thai-do-phuc-vu-cua-can-bo-y-te-huong-toi-su-hai-long-cua-nguoi-benh-2023">Top 9 đổi mới phong cách, thái độ phục vụ của cán bộ y tế hướng tới sự hài lòng của người bệnh 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#8</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-2-bai-the-duc-phat-trien-chung-lop-6-2022-2023">Top 2 bài the dục phát triển chung lớp 6 2022 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#9</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-3-bai-giang-vu-dieu-sac-mau-lop-4-2023">Top 3 bài giảng vũ điệu sắc màu (lớp 4) 2023</a></h5> <small class="meta text-right">5 tháng trước</small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4> <div class="mb-4 mx-auto"> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:600px" data-ad-client="ca-pub-" data-ad-slot="" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="card card-item"> <div class="card-body"> <h3 class="fs-17 pb-3">Xem Nhiều</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/dung-ram-nhu-the-nao-cho-may-tinh-xem-phim-nam-2024">Dùng ram như thế nào cho máy tính xem phim năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DelightedWhereabouts" class="author">DelightedWhereabouts</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/ky-hieu-ext-tren-tay-cam-ps4-pro-la-gi-nam-2024">Ký hiệu ext trên tay cầm ps4 pro là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">6 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/OverhangingIceberg" class="author">OverhangingIceberg</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/camera-dieu-khien-tren-khong-goi-la-gi-nam-2024">Camera điều khiển tren không gọi là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/SquareBrunt" class="author">SquareBrunt</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/nghia-vu-co-ban-cua-hop-dong-la-gi-nam-2024">Nghĩa vụ cơ bản của hợp đồng là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">6 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/Short-termGrandeur" class="author">Short-termGrandeur</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/chuoi-phuong-trinh-hoa-huu-co-co-loi-giai-nam-2024">Chuỗi phương trình hóa hữu cơ có lời giải năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/BenevolentCondominium" class="author">BenevolentCondominium</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/quy-dau-tu-pdf-la-viet-tat-cua-tu-gi-nam-2024">Quỹ đầu tư pdf là viết tắt của từ gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/SumptuousEmbodiment" class="author">SumptuousEmbodiment</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/ip6-plus-va-6s-plus-khac-nhau-nhu-the-nao-nam-2024">Ip6 plus và 6s plus khác nhau như thế nào năm 2024</a></h5> <small class="meta"> <span class="pr-1">2 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/Front-pageNoodle" class="author">Front-pageNoodle</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/bai-tap-dinh-luat-boi-lo-ma-ri-ot-nam-2024">Bài tập định luật bôi lơ ma ri ốt năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ClandestineMemory" class="author">ClandestineMemory</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/soan-bai-ram-thang-gieng-ngu-van-lop-7-nam-2024">Soạn bài rằm tháng giêng ngữ văn lớp 7 năm 2024</a></h5> <small class="meta"> <span class="pr-1">5 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/HuntedUniversity" class="author">HuntedUniversity</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/giai-toan-nang-cao-lop-2-co-dap-an-nam-2024">Giải toán nâng cao lớp 2 có đáp án năm 2024</a></h5> <small class="meta"> <span class="pr-1">3 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/BrusqueSpoiler" class="author">BrusqueSpoiler</a> </small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4> <div class="mb-4 mx-auto" style=" text-align: center"> <div id='div-gpt-ad-1657246837997-0' style='min-width: 300px; min-height: 600px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1657246837997-0'); }); </script> </div> </div> </div> </div><!-- end sidebar --> </div><!-- end col-lg-3 --> </div><!-- end row --> </div><!-- end container --> </section><!-- end question-area --> <!-- ================================ END QUESTION AREA ================================= --> <script>var questionId ='huong-dan-dom-javascript'</script> <script>var postTime ='2022-10-03T01:50:08.628Z'</script> <script>var siteDomain ='biquyetxaynha.com'</script> <script type="text/javascript" src="https://biquyetxaynha.com/dist/js/pages/comment.js"></script> <!-- ================================ END FOOTER AREA ================================= --> <section class="footer-area pt-80px bg-dark position-relative"> <span class="vertical-bar-shape vertical-bar-shape-1"></span> <span class="vertical-bar-shape vertical-bar-shape-2"></span> <span class="vertical-bar-shape vertical-bar-shape-3"></span> <span class="vertical-bar-shape vertical-bar-shape-4"></span> <div class="container"> <div class="row"> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Chúng tôi</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/about.html">Giới thiệu</a></li> <li><a href="/contact.html">Liên hệ</a></li> <li><a href="/contact.html">Tuyển dụng</a></li> <li><a href="/contact.html">Quảng cáo</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Điều khoản</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/privacy-statement.html">Điều khoản hoạt động</a></li> <li><a href="/terms-and-conditions.html">Điều kiện tham gia</a></li> <li><a href="/privacy-statement.html">Quy định cookie</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Trợ giúp</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/contact.html">Hướng dẫn</a></li> <li><a href="/contact.html">Loại bỏ câu hỏi</a></li> <li><a href="/contact.html">Liên hệ</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Mạng xã hội</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="#"><i class="fab fa-facebook-f mr-1"></i> Facebook</a></li> <li><a href="#"><i class="fab fa-twitter mr-1"></i> Twitter</a></li> <li><a href="#"><i class="fab fa-linkedin mr-1"></i> LinkedIn</a></li> <li><a href="#"><i class="fab fa-instagram mr-1"></i> Instagram</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> </div><!-- end row --> </div><!-- end container --> <hr class="border-top-gray my-5"> <div class="container"> <div class="row align-items-center pb-4 copyright-wrap"> <div class="col-6"> <a href="//www.dmca.com/Protection/Status.aspx?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca_protected_sml_120am.png?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" width="123px" height="21px" alt="DMCA.com Protection Status" /></a> <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script> </div> <!-- end col-lg-6 --><div class="col-6"> <div class="copyright-desc text-right fs-14"> <div>Bản quyền © 2021 <a href="https://biquyetxaynha.com">Xây Nhà</a> Inc.</div> </div> </div><!-- end col-lg-6 --> </div><!-- end row --> </div><!-- end container --> </section><!-- end footer-area --> <!-- ================================ END FOOTER AREA ================================= --><script> $( document ).ready(function() { setTimeout(showMoreButton, 3000); function showMoreButton(){ let minheight = 1000; minheight = parseInt($("#entryContent").innerHeight())/3; $("#entryContent").css('min-height', minheight).css('max-height', minheight).css('overflow', 'hidden'); $("#readmore_content").click(function(){ $("#entryContent").css('min-height', '').css('max-height', '').css('overflow', ''); $(".readmore_content_exists").css('display', 'none'); }) } }); </script> <!-- template js files --> <!-- start back to top --> <div id="back-to-top" data-toggle="tooltip" data-placement="top" title="Lên đầu trang"> <img alt="" src="/dist/images/svg/arrow-up_20.svg"> </div> <!-- end back to top --> <script src="https://biquyetxaynha.com/dist/js/bootstrap.bundle.min.js"></script> <script src="https://biquyetxaynha.com/dist/js/moment.js"></script> <script src="https://biquyetxaynha.com/dist/js/read-more.min.js"></script> <script src="https://biquyetxaynha.com/dist/js/main.js?v=6"></script> <!-- Google Tag Manager (noscript) --> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "jxuz46z39u"); </script> </body> </html>