以下是我的html代码段:
<div class="pay row-0 col-1 ">
<div class="t-middle f26 f-white row-0 " style="position:absolute;top:50%;">please wait...</div>
</div>
.pay
类的样式表如下:
.pay, .stopIE {
position: fixed;
background: rgba(0, 0, 0, 0.7);
z-index: 100;
top: 0;
display: none;
}
单击按钮时,将执行以下功能。
$scope.goBuy = function(){
Account.buyNow({"pid": $scope.buypp.id})
.then(function(response){
[change the .pay class display to block]
$window.location.href = response.data;
})
.catch(function(response){
})
}
在等待回复时,如何将.pay
类display
属性值从none
更改为block
。谢谢!