jquery – 在显示模态之前解析Angular UI Modal打开的promise

前端之家收集整理的这篇文章主要介绍了jquery – 在显示模态之前解析Angular UI Modal打开的promise前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图在打开的模式上执行jQuery脚本,以便将其中一个字段转换为jQuery UI Spinner.

我正在使用Angular UI中记录的已公开承诺.

问题:
jQuery选择器不能按预期工作,也不会检索任何内容.

所以我的控制器的一个功能看起来像这样:

var modalInstance = $modal.open({
    templateUrl: 'modalDialog.html',controller: modalCtrl,resolve: {
        noOfItems: function(){
            return $scope.noOfItems;
        }
    }
});

modalInstance.opened
    .then(function () {
        $(".spinner").spinner({
            max: 20,min: 1
        });
    });

modalInstance.result
    .then(function () {
        console.log("modal closed");
    });

我的HTML:

猜你在找的jQuery相关文章