resetElement Method | DHTML中文手册 |
Removes any changes made to the element and returns the element to its original state.
dhtml语法
object.resetElement()
Return Value
No return value.
DHTML代码范例
This example uses the resetElement method to demonstrate how to return an element to its original state.
<HTML XMLNS:t="urn:schemas-microsoft-com:time"> <HEAD> <TITLE>resetElement Method</TITLE> <STYLE> .time { behavior: url(#default#time2) } </STYLE> <?IMPORT namespace="t" implementation="#default#time2"> </HEAD> <BODY TOPMARGIN=0 LEFTMARGIN=0 BGPROPERTIES="fixed" BGCOLOR="#FFFFFF" LINK="#000000" VLINK="#808080" ALINK="#000000"> <t:excl ID="t1" repeatDur="indefinite" onbegin="b1.disabled=false; b2.disabled=true;"> <DIV ID="div1" CLASS="time" BEGIN="0" DUR="5">First line displayed for 5 seconds.</DIV> <DIV ID="div2" CLASS="time" BEGIN="5" DUR="5">Second line displayed for 5 seconds.</DIV> </t:excl> <BR> <BUTTON id="b1" onclick="t1.endElementAt(5); alert('The time container will end at 5 seconds!'); b2.disabled=false;b1.disabled=true;">End Timeline at 5 seconds</BUTTON> <BUTTON id="b2" onclick="t1.resetElement();alert('No changes made to the timeline!'); b2.disabled=true;b1.disabled=false;">Reset</BUTTON> </BODY> </HTML>
是否符合公共标准
This method is a Microsoft extension to Synchronized Multimedia Integration Language (SMIL) .
Applies To
t:ANIMATE, t:ANIMATECOLOR, t:ANIMATEMOTION, t:ANIMATION, t:AUDIO, t:EXCL, t:IMG, t:MEDIA, t:PAR, t:REF, t:SEQ, t:SET, time2, t:VIDEO
更多语法参考
Introduction to HTML+TIME