var registerPopup = $ionicPopup.show({ templateUrl: 'templates/register_popup.html',scope: $scope });
即使我完全删除了标题标签,标题区仍然可见,并带有空白区域,如下图所示.我想从ionicPopup中删除整个标题空间.我怎么才能得到它?代码中会有哪些变化?
首先在Popup对象中向cssClass属性添加custom-class的值.
var registerPopup = $ionicPopup.show({ templateUrl: 'templates/register_popup.html',cssClass: 'custom-class',// Add scope: $scope });
您可以使用自定义CSS隐藏它.
.custom-class .popup-head { display: none; }