Can I give a XBL handler a name to call it?
Can I give a XBL handler a name, so I can call it from my javascript like I do w开发者_运维百科ith XBL methods?
It seems not, but you can create an XBL Method and call it from both your handler and other JavaScript. Something like:
<handler event="mouseover">
this.handleMouseOver();
</handler>
...
<method name="handleMouseOver">
<body>...
//and in javascript code:
yourObj.handleMouseOver();
精彩评论