弹出窗口需要在使用角度js打开新标签时打开

时间:2014-08-10 07:55:18

标签: javascript jquery angularjs twitter-bootstrap

<a class="seecode_button" href="" ng-click="newwindow(w)" data-toggle="modal" data-target="#{{w.CouponID}}">CLICK TO SEE CODE</a>

我的弹出广告

<div class="modal fade coupon_popup" id="{{w.CouponID}}" tabindex="-1" role="dialog" aria-labelledby="{{w.CouponID}}" aria-hidden="true">

和我的角度js代码

 $scope.newwindow = function(w) {
    $window.open(w.LandingPageURL, '_self');
    $window.open('#','_blank');
 };   

在我的代码新窗口中打开当前页面,但它重新加载页面,因此弹出窗口已经消失。我正在尝试在新选项卡中打开当前页面时,还需要打开弹出窗口。我使用角度js 1.2.17和bootstrap.js v3.0.0。

0 个答案:

没有答案