2008-06-04

iframe 的 onload 使用方式

使用一般 onload 的話,是無法正常執行的
所以要改用 event 的方式
function showMsg(){
alert(123);
}

iframe.attachEvent( "onload ",showMsg);

沒有留言: