<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <script> document.write(new Date()); </script> <body> <img src="./1.jpg" alt="" id="img1" width="200"> <img src="./2.jpg" alt="" id="img2" width="200"> <p id="p1">所有標(biāo)簽都可以進(jìn)行跳轉(zhuǎn)操作 再也不用a標(biāo)簽跳轉(zhuǎn)了</p> </body> <script> document.write('獲取完成url路徑:'+window.location.href+'<br/>'); document.write('獲取路徑:'+window.location.pathname+'<br/>'); document.write('獲取協(xié)議:'+window.location.protocol+'<br/>'); document.write('獲取主機(jī)名:'+window.location.hostname+'<br/>'); var img1 = document.getElementById('img1'); var img2 = document.getElementById('img2'); img1.onclick=function(){ location = 'http://www.4399.com'; } img2.onclick=function(){ //alert(2); //location.reload(); } setInterval(function(){ //location.reload(); },5000) var p = document.getElementById('p1'); p.onclick=function(){ location="http://www.12306.cn"; } </script> </html>
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號(hào)
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號(hào)