Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

MozMmsEvent

Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

This API is available on Firefox OS for internal applications only.

요약

DOM MozMmsEvent 는 WebSMS MMS 메시지와 관련된 이벤트 객체이다.

속성

MozMmsEvent.message Read only
해당 이벤트에 의해 발생된 MozMmsMessage 이다.

MozMmsEvent 는 또한 Event 의 속성을 상속받는다.

Event()
Creates an Event object.

Properties

This interface doesn't inherit any property.

Event.bubbles Read only
A boolean indicating whether the event bubbles up through the DOM or not.
Event.cancelable Read only
A boolean indicating whether the event is cancelable.
Event.currentTarget Read only
A reference to the currently registered target for the event.
Event.defaultPrevented Read only
Indicates whether or not event.preventDefault() has been called on the event.
Event.eventPhase Read only
Indicates which phase of the event flow is being processed.
Event.explicitOriginalTarget Read only
The explicit original target of the event (Mozilla-specific).
Event.originalTarget Read only
The original target of the event, before any retargetings (Mozilla-specific).
Event.target Read only
A reference to the target to which the event was originally dispatched.
Event.timeStamp Read only
The time that the event was created.
Event.type Read only
The name of the event (case-insensitive).
Event.isTrusted Read only
Indicates whether or not the event was initiated by the browser (after a user click for instance) or by a script (using an event creation method, like event.initEvent)

메소드

MozMmsEventEvent 의 메소드를 상속받는다.

This interface doesn't inherit any method.

Event.initEvent()
Initializes the value of an Event created. If the event has already being dispatched, this method does nothing.
Event.preventBubble() Obsolete since Gecko 24
Prevents the event from bubbling. Obsolete, use event.stopPropagation instead.
Event.preventCapture() Obsolete since Gecko 24
Obsolete, use event.stopPropagation instead.
Event.preventDefault()
Cancels the event (if it is cancelable).
Event.stopImmediatePropagation()
For this particular event, no other listener will be called. Neither those attached on the same element, nor those attached on elements which will be traversed later (in capture phase, for instance)
Event.stopPropagation()
Stops the propagation of events further along in the DOM.
Event.getPreventDefault()
?

이벤트

MozMmsEvent 는 다음과 같은 이벤트들에 사용된다:

deliverysuccess
MMS가 수신자에게 전달되었을 때 발생한다.
received
MMS를 받았을 때 발생한다.
sent
MMS를 보냈을 때 발생한다.

스펙

이 API는 비 표준 스펙의 구현체이다. 그러나 W3C의 System Application Working Group에서 논의되고 있다.

Specification Status Comment
Messaging API Editor's Draft Editor Draft (WIP).

브라우저 호환성

당연하게도, 모바일 브라우저를 주로 지원할 것으로 예상된다.

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support Not supported Not supported Not supported Not supported Not supported
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support Not supported 12.0 (12.0) Moz Not supported Not supported Not supported

참고 자료

문서 태그 및 공헌자

 이 페이지의 공헌자: khalid32, PillarLee
 최종 변경: khalid32,