JS添加一個(gè)按鈕,點(diǎn)擊按鈕后跳轉(zhuǎn)到百 度首頁(yè),關(guān)閉頁(yè)面,關(guān)閉彈出的頁(yè)面【詩(shī)書(shū)畫(huà)唱】

頁(yè)面添加一個(gè)按鈕,點(diǎn)擊按鈕后跳轉(zhuǎn)到百
度首頁(yè),添加關(guān)閉頁(yè)面的按鈕,點(diǎn)擊關(guān)閉后關(guān)閉
彈出的頁(yè)面
JS部分:
//window. document.write("124");
//window.alert("121");//提示性
//prompt:帶有輸入內(nèi)容的彈出框
//confirm :帶有是和否的彈出框
//打印地址欄中所有的內(nèi)容
//console. log(window. location);
//打印主機(jī)名和端口號(hào)
//console. log(window. location.host);
//打印主機(jī)名
//console. log(window. location. hostname);
//端口號(hào):計(jì)算機(jī)中用于連接其他計(jì)算機(jī)的通道
//console. log(window . location. port);
//pathName:路徑(相對(duì)路徑)文件相對(duì)于項(xiàng)目的位置(絕對(duì)路徑 )文件相對(duì)于計(jì)算機(jī)磁盤(pán)的位置
//console. log(window. location. pathname) ;
//地址欄的位置,在于可以使用它去訪問(wèn)指定的地址
//console .log(window. location.href);
//點(diǎn)擊按鈕后訪問(wèn)百度
var inputVar=document.getElementsByTagName("input")[0];
inputVar.onclick=function(){
window.location.href="http://www.baidu.com";}}
//進(jìn)行頁(yè)面跳轉(zhuǎn)的時(shí)候不一定是超鏈接,只需要改變你的地址欄的路徑即可
</script>
HTML部分:
<input type="button" value="點(diǎn)擊我" />


