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

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

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

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

David Flanagan

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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

Availability


JavaScript 1.0


Synopsis

document.close( )

Description


This method displays any output to
document that has been written but not yet
displayed and closes the output stream to
document. When generating complete HTML
pages with Document.write( ), you should invoke
Document.close( ) when you reach the end of the
page.

After document.close( )
has been called, if any further output is written to
document (e.g., with
document.write( )), the
document is implicitly cleared and reopened, erasing all the output
that was written prior to calling the close( )
method.


See Also


Document.open( ), Document.write( )

/ 844