<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。