close
Attach Event 到指定的 elm 裡 :
 
function attachElmEvent(elm, event, fun)
{
    if (elm.addEventListener) //DOM event model
    {
        elm.addEventListener(event, fun, false);
    }
    else if (elm.attachEvent) //M$ event model
    {
        elm.attachEvent("on" + event, fun);
    }
}
 
使用範例:
    attachElmEvent(window, "load", test);
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 雪 薄草 的頭像
    雪 薄草

    雪 薄草的部落格

    雪 薄草 發表在 痞客邦 留言(0) 人氣()