2011-04-21 39 views

回答

1

HTML5使這很簡單:

document.getElementById('your_video').onended = function() { 
    newWindow = window.open(url, 'Foo', 'height=250,width = 200'); 

    if (window.focus) {newWindow.focus()} 
} 
相關問題