HTC的进阶设计:Attach的应用 <public:attach>所指定的处理程序,除了应用在网页中个别的无件外,也可以加上"FOR"属生,来处理"Document"的事件。本例中,我设定的是"Document"的"Onclick"事件,所以在网页的任何位置按左键,都可打开信息视窗。 xmllover.htc <public:component> <public:attach event="onlick" onevent="change1()" for="document" /> <script language="vbscript"> function change1() alert "我是xmllover,这是Document的事件" end function </script> </public:component>
xmllover.htm <html> <head> <title>xmllover</title> </head> <body style="Behavior:url(xmllover.htc)"> </body> </html> 如果将"for"的属性改成"window"就是浏览视窗的处理程序 大家可以自己试试效果!
|