TAILIEUCHUNG - Pro JavaScript Techniques phần 10

Trên mặt trận khác, các GÌ-WG, một sự hợp tác của các nhà sản xuất trình duyệt web, những người muốn phát triển công nghệ mới cho phép bằng văn bản và triển khai các ứng dụng trên Web, đã tạo ra các đặc điểm kỹ thuật cho các thế hệ tiếp theo của các ứng dụng dựa trên trình duyệt. | 322 APPENDIX A DOM REFERENCE Listing A-27. Watching a textarea for Changes and Updating a Live Preview With Its Value Get the textarea to watch for updates var t textarea 0 Grab the current value of a textarea and update a live preview everytime that it s changed function preview .innerHTML insertBefore nodeToInsert nodeToInsertBefore This function is used to insert a DOM node anywhere into a document. The function must be called on the parent element of the node that you wish to insert it before. This is done so that you can specify null for nodeToInsertBefore and have your node inserted as the last child node. The function takes two arguments. The first argument is the node that you wish to insert into the DOM the second is the DOM node that you re inserting before. This should be a reference to a valid node. Listing A-28 shows an example of using this function to insert the favicon the icon that you see next to a URL in the address bar of a browser of a site next to a set of URLs on a page. Listing A-28. Going Through All a Elements and Adding an Icon Consisting of the Site s Favicon Find all the a links within the document var a a for var i 0 i i Create an image of the linked-to site s favicon var img img a i . .splice 0 3 .join Insert the image before the link a i . img a i removeChild nodeToRemove This function is used to remove a node from a DOM document. The removeChild function must be called on the parent element of the node that you wish to remove. The function takes one argument a reference to the DOM node to remove from the document. Listing A-29 shows an example of running through all the div elements in the document removing any that have a single class of warning. APPENDIX A DOM REFERENCE 323 Listing A-29. Removing All Elements That Have a Particular Class .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.