您好,登錄后才能下訂單哦!
這是一個簡單的路由跳轉(zhuǎn),希望對你有所幫助
下面的連接中有復(fù)雜的路由跳轉(zhuǎn)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="angular1.4.6.min.js"></script> <script src="angular-route.js"></script> </head> <body ng-app="MyApp" > <a href="#/" rel="external nofollow" >CHINA</a><br/> <a href="#/1" rel="external nofollow" >CHINA1</a><br/> <a href="#/2" rel="external nofollow" >CHINA2</a><br/> <a href="#/3" rel="external nofollow" >CHINA3</a><br/> <div ng-view> 11111 </div> <script> var app = angular.module("MyApp", ["ngRoute"]); app.config(function ( $routeProvider) { $routeProvider .when("/", {template: "<h2>123</h2>"}) .when("/1", {template: "<h2>111</h2>"}) .when("/2", {template: "<h2>222</h2>"}) .when("/3", {template: "<h2>333</h2>"}); }); </script> </body> </html>
總結(jié)
以上所述是小編給大家介紹的JS路由跳轉(zhuǎn)的簡單實現(xiàn)代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。