Programming Language Examples Alike Cookbook :http://pleac.sourceforge.net/
這東西搜索了半天才搞到,我安裝的是3.2的,下面的序列號一樣可以使用,共享一下,省得大家再去找了 
install4j Enterprise Edition 3.1.3注冊碼、序列號、破解版、注冊機
S/N: A-G42M#03948F-pzwgavu2ohmw#316
????? ? A-G42M#03948F-pzwgavu2ohmw#508
install4j Proffesional Edition 3.1.2注冊碼、序列號、破解版、注冊機
S/N: A-G4iN#89756F-9qotdnr5rq9a#0015
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/fireevent.asp
Fires a specified event on the object.
Syntax
bFired?
=
?object.fireEvent(sEvent?[,oEventObject])
Parameters
sEvent | Required. String that specifies the name of the event to fire. |
oEventObject | Optional. Object that specifies the event object from which to obtain event object properties. |
Return Value
Boolean. Returns one of the following values:
true | Event fired successfully. |
false | Event was cancelled. |
Remarks
If the event being fired cannot be cancelled, fireEvent always returns true.
Regardless of their values specified in the event object, the values of the four event properties—cancelBubble, returnValue, srcElement, and type—are automatically initialized to the values shown in the following table.
Event object property | Value |
---|
cancelBubble | false |
returnValue | true |
srcElement | element on which the event is fired |
type | name of the event that is fired |
Example
<html>
<head>
????<script>
????????function?fnfireevents()
????????{
????????????odiv.innertext?=?"?the?cursor?has?moved?over?me!?";
????????????obutton.fireevent("?onclick?");
????????}
????</script>
</head>
<body>
<h1>?using?the?fireevent?method?</h1>
by?moving?the?cursor?over?the?div?below,?the?button?is?clicked.
<p>
<div?id="odiv"?onmouseover="fnfireevents();">
????mouse?over?this!
</div>
<p>
<button?id="obutton"?onclick="this.innertext='i?have?been?clicked!'">
????button?</button>
</body>
</html>??