您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關angularJS1如何獲取url中攜帶的參數的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
index.html 從此界面跳轉到a.html界面
<!doctype html> <html> <head> <meta charset="utf-8"> <title>form demo</title> <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0" /> <script src="js/angular.min.1.6.0.js"></script> </head> <body ng-app="app" ng-controller="myctrl"> <button ng-click="jump()" >點擊跳轉下一頁</button> <br /><br /> <a ng-href="a.html?name=xie&age=25&gender=nv" rel="external nofollow" >點擊跳轉下一頁</a> </div> </body> <script> var app = angular.module('app', []); app.controller('myctrl', function($scope, $window) { $scope.jump = function() { $window.location.href = 'a.html?name=xie&age=25&gender=nv'; } }); </script> </html>
a.html 跳轉到的目標界面,在此界面獲取url攜帶的參數:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0" /> <script src="js/angular.min.1.6.0.js"></script> <title></title> </head> <body ng-app="myapp" ng-controller="myctrl" > <p>a.html</p> </body> <script> //Url="http://168.33.222.69:8020/angularjs_demo/a.html?name=xie&age=25&gender=nv"; var app=angular.module("myapp",[]); app.config(['$locationProvider', function($locationProvider) { // $locationProvider.html5Mode(true); $locationProvider.html5Mode({ enabled: true, requireBase: false }); }]); app.controller('myctrl', function($scope, $location) { console.log($location.search().name); console.log($location.search().age); console.log($location.search().gender); }); //打印結果: //[Web瀏覽器] "xie" //[Web瀏覽器] "25" //[Web瀏覽器] "nv" </script> </html>
感謝各位的閱讀!關于“angularJS1如何獲取url中攜帶的參數”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。