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

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

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

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

David Flanagan

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Availability


DOM Level 2 Events


Synopsis

void initMutationEvent(String typeArg,
boolean canBubbleArg,
boolean cancelableArg,

Node relatedNodeArg,
String prevValueArg,

String newValueArg,
String attrNameArg,
unsigned short attrChangeArg);

Arguments


The various arguments to this method specify the initial values of
the properties of this MutationEvent object, including the properties
inherited from the Event interface. The name of each argument clearly
indicates the property for which it specifies the value, so the
arguments are not listed individually here.


Description


This method initializes the various properties of a newly created
MutationEvent object. It may be called only on a MutationEvent object
created with Document.createEvent( ) and only
before that MouseEvent is passed to
EventTarget.dispatchEvent( ).

/ 844