欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

AngularJS 打开新的标签页实现代码

程序员文章站 2022-07-06 20:46:50
废话不多说了,直接给大家贴代码了,具体代码如下所示: ...

废话不多说了,直接给大家贴代码了,具体代码如下所示:

 <!doctype html> 
<html ng-app="mypro"> 
  <head> 
    <meta charset="utf-8"> 
    <title>angularjs-打开新的标签页</title> 
    <script type="text/javascript" src="js/angular.min.js" ></script> 
    <script type="text/javascript" src="js/jquery-1.11.0.js" ></script> 
  </head> 
  <body ng-controller="myprocontroller"> 
    <button ng-click="click_this()">打开新的标签页</button> 
  </body> 
  <script> 
    var pro = angular.module("mypro",[]); 
    pro.controller("myprocontroller",["$scope","$location",function($scope,$location){ 
      $scope.click_this = function(){ 
        var url = $location.absurl().split("angularjs_")[0]+'angularjs_newtab.html'; 
        window.open(url,"_blank"); 
      }; 
    }]); 
  </script> 
</html> 

总结

以上所述是小编给大家介绍的angularjs 打开新的标签页实现代码,希望对大家有所帮助