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

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

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

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

David Flanagan

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Availability


DOM Level 2 Range


Synopsis

DocumentFragment extractContents( )
throws DOMException;

Returns


A DocumentFragment node that contains the contents of this range.


Throws


This method throws a DOMException with a code of
NO_MODIFICATION_ALLOWED_ERR if any part of the
document content to be extracted is read-only, or a
code of HIERARCHY_REQUEST_ERR
if the range contains a DocumentType node.


Description


This method deletes the specified range of a document and returns a
DocumentFragment node that contains the deleted content (or a copy of
the deleted content). When this method returns, the range is
collapsed, and the document may contain adjacent Text nodes (which
can be merged with Node.normalize( )).


See Also


DocumentFragment, Range.cloneContents( ), Range.deleteContents( )

/ 844