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

void collapse(boolean toStart)
throws DOMException;

Arguments


toStart

If this argument is true, the method sets the end
point of the range to the same value as the starting point.
Otherwise, it sets the starting point to the same value as the end
point.


Description


This method sets one boundary point of the range to be the same as
the other point. The point to be modified is specified by the
toStart argument. After this method
returns, the range is said to be "collapsed": it
represents a single point within a document and has no content. When
a range is collapsed like this, its collapsed
property is true.

/ 844