中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue項目中hash值的原理是什么

發布時間:2020-12-15 15:42:22 來源:億速云 閱讀:473 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關vue項目中hash值的原理是什么,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

具體如下:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style>
			.pages>div{display: none;}
		</style>
	</head>
	<body>
		<p>
			<a href="#/" rel="external nofollow" >aaa</a>
			<a href="#/about" rel="external nofollow" >bbb</a>
			<a href="#/user" rel="external nofollow" >cccc</a>
		</p>
		<div class="pages">
			<div id="home">首頁</div>
			<div id="about">關于我的頁面</div>
			<div class="user">用戶中心</div>
		</div>
	</body>
	<script type="text/javascript">
		//hash 和頁面一一對應起來
		//router 配置
		var router = [
			{path:"/",component:document.getElementById("home")},
			{path:"/about",component:document.getElementById("about")},
			{path:"/user",component:document.querySelector(".user")},
		]
		
		// 默認hash
		window.location.hash = "#/";
		// 默認頁面
		var currentView = router[0].component;
		currentView.style.display="block";
		
		
		
		window.onhashchange=()=>{
			//通過判斷hash切換div頁面
			console.log(location.hash);
			//獲取hash值,不要井號
			var hash = location.hash.slice(1);
			router.forEach(item=>{
				if(item.path==hash){
					//先隱藏之前顯示的頁面
					currentView.style.display = "none";
					// 顯示對應的組件
					item.component.style.display = "block";
					//重新設置當前顯示的頁面是哪個div
					currentView = item.component;
				}
			})
		}
	</script>
</html>

關于vue項目中hash值的原理是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

榕江县| 夏津县| 乳山市| 金山区| 寻乌县| 天津市| 沁源县| 来宾市| 德安县| 恭城| 西峡县| 维西| 常山县| 广水市| 房产| 东丰县| 汝阳县| 南华县| 出国| 宝应县| 桐柏县| 安西县| 车致| 晋宁县| 社旗县| 吉水县| 邳州市| 扎赉特旗| 顺义区| 贞丰县| 黄梅县| 双城市| 澜沧| 邢台市| 吐鲁番市| 襄汾县| 邵武市| 松江区| 文安县| 江城| 长寿区|