20?html如何寫彈窗跳轉代碼?
可以用html中的a標簽(xxx.html就是要跳轉的鏈接):
<a href="xxx.html">跳轉鏈接</a>
可以用js進行跳轉:
<button onclick="window.location.href='xxx.html'">點擊跳轉</button>
以上兩種方式達到的效果是一樣的.
20?html如何寫彈窗跳轉代碼?
可以用html中的a標簽(xxx.html就是要跳轉的鏈接):
<a href="xxx.html">跳轉鏈接</a>
可以用js進行跳轉:
<button onclick="window.location.href='xxx.html'">點擊跳轉</button>
以上兩種方式達到的效果是一樣的.