javascript当中事件派发(dispatchEvent)的用法

事件派发(dispatchEvent)
马克-to-win:下例仔细剖析了dispatchEvent。
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
例 12.1(DispatchEventFireIEFF.html)
<HTML>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</HEAD>
<BODY>
<select onchange="alert('select onchange event');" id="select1">
    <option>1</option>
    <option>2</option>
</select>
<INPUT TYPE="button" value="按这" onclick="clickButton()">
<script type="text/javascript">
    function clickButton() {
        alert("click button");
        var t = document.getElementById('select1')
        if (document.all) {
            t.fireEvent("onchange");
            alert("ie");
        }
        else {
            var evt = document.createEvent('HTMLEvents');
            evt.initEvent('change', true, true);
            t.dispatchEvent(evt);
        }
    }
</script>
按button也会发出option的select事件
</BODY>
</HTML>