返回到:Prototype – 元素对象
此方法用于触发以当前元素为目标的自定义事件。
自定义事件具有所有与本机事件相同的属性和方法。与本机事件一样,除非明确停止其传播,否则它将通过 DOM 冒泡。
自定义事件是同步调度的:Element#fire 等待事件完成其生命周期,然后返回事件本身。
语法
element.fire(eventName[, memo]);
可选的第二个参数将分配给事件对象的memo属性,以便事件处理程序可以读取它。
返回值
它返回自定义事件
例子
在此示例中,ID 为 (firstDiv) 的元素 frobbed 小部件 #19。
<html> <head> <title>Prototype examples</title> <script type = "text/javascript" src = "/javascript/prototype.js"></script> <script> document.observe("widget:frobbed", function(event) { alert("Element with ID (" + event.target.id + ") frobbed widget #" + event.memo.widgetNumber + "."); }); function showResult() { someNode = $('firstDiv'); someNode.fire("widget:frobbed", { widgetNumber: 19 }); } </script> </head> <body> <p>Click the button to see the result.</p> <div id = "firstDiv"> <p>This is first paragraph</p> </div> <br /> <input type = "button" value = "showResult" onclick = "showResult();"/> </body> </html>
返回到:Prototype – 元素对象
作者:terry,如若转载,请注明出处:https://www.web176.com/prototype_api/9114.html