|
在網頁一載入的時候,就彈跳出新的視窗,語法可以這樣下。- <html>
- <BODY onLoad="window.open('new_page.html','','height=300,width=300')" >
- </body>
- </html>
複製代碼 以下為完整的參數列表,可再自己針酌是否使用- window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')
複製代碼 |
|