HTML彈出廣告的代碼案例:
<html> <head> <title>彈出廣告案例</title> <script type="text/javascript"> function popUp(){ window.open("https://www.example.com","_blank","width=300,height=250"); } window.onload = popUp; </script> </head> <body> <h1>歡迎來到我的網站!</h1> <p>這是一個用于演示HTML彈出廣告的案例。</p> </body> </html>
在以上代碼中,我們使用了JavaScript的window.open方法在網站加載時彈出了一個新的窗口,該窗口鏈接到https://www.example.com,寬度為300,高度為250。