bievent.xml

来自「ajax 框价.是个好工具.javascript 矿家.可以用在任何平台.」· XML 代码 · 共 82 行

XML
82
字号
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="api.xsl"?><class name="BiEvent" extends="BiObject">	<description>The event class is the core class describing the event objects passed around in an event.</description>	<arguments>		<argument name="sType">			<description>The type (name) of the event. The argument is used 						in the 						<link class="BiEventTarget" field="addEventListener">addEventListener</link>                         to know which listeners to notify.</description>			<type>String</type>		</argument>	</arguments>	<staticMethods>	</staticMethods>	<staticFields>	</staticFields>	<methods>		<method name="stopPropagation">			<description>If the event can bubble then this stops the propagation of the event bubbling after all the listeners on the current <link class="BiEventTarget">BiEventTarget</link> have been notified.</description>			<arguments>			</arguments>			<returns>				<type>void</type>			</returns>		</method>		<method name="preventDefault">			<description>Some events have a default action associated with them and if so then calling this method will prevent that action from happening.</description>			<arguments>			</arguments>			<returns>				<type>void</type>			</returns>		</method>	</methods>	<properties>		<property name="type" get="true">			<description>The type (name) of the event.</description>			<type>String</type>		</property>		<property name="target" get="true">			<description>The <link class="BiEventTarget">BiEventTarget</link> that initially dispatched the event.</description>			<type>				<link class="BiEventTarget">BiEventTarget</link>			</type>		</property>		<property name="currentTarget" get="true">			<description>The <link class="BiEventTarget">BiEventTarget</link> that the event handler was added to. This is not the same as the <link>target</link> in case the event has bubbled.</description>			<type>				<link class="BiEventTarget">BiEventTarget</link>			</type>		</property>		<property name="bubbles" get="true">			<description>Whether the event bubbles to the parent component.</description>			<type>Boolean</type>		</property>		<property name="propagationStopped" get="true">			<description>If the propagation has been stopped. This is true after <link>stopPropagation</link> has been called and this means that bubbling events will not bubble up to the parent of the current target component</description>			<type>Boolean</type>		</property>		<property name="defaultPrevented" get="true">			<description>If the default event should be prevented. This becomes true after calling <link>preventDefault</link>			</description>			<type>Boolean</type>		</property>	</properties>	<events>	</events>	<remarks>	</remarks></class>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?