angularjs 两个页面相互之前传值

 a.html

{{pt_type}}

<a ng-href="addnews.html#/?pt_type=1">新增</a></span>

 

b.html

{{pt_type}}

   <span> <a ng-href="background.html#/?pt_type=1">查询</a></span>

 

 

js:

 $scope.pt_type = $location.search().pt_type;

 

你可能感兴趣的:(angularjs 两个页面相互之前传值)