Javascript [Electronic resources] : The Definitive Guide (4th Edition) نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Javascript [Electronic resources] : The Definitive Guide (4th Edition) - نسخه متنی

David Flanagan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید

Availability


DOM Level 2 Traversal


Synopsis

void detach( );

Description


DOM implementations keep track of all NodeIterator objects created
for a document, because they may need to modify the state of the
NodeIterator when certain Document nodes are deleted. When you are
certain that a NodeIterator isn't needed anymore, call
detach( ) to tell the implementation that it no
longer needs to keep track of it. Note, however, that once you call
this method any subsequent call to nextNode( ) or
previousNode( ) will throw an exception.

Calling detach( ) is not required, but doing so
may improve performance when the document is being modified and the
NodeIterator object is not immediately garbage collected.

/ 844