ng-Template CSS不起作用

时间:2016-05-26 14:59:10

标签: angularjs

使用AngularJS ngDialog。 期望文档中的CSS应用于ngDialog,但未应用。enter image description here

代码:

<script type="text/ng-template" id="attach_account_template">
  <div id="attach_account_div" ng-controller="Opportunity_Controller" style="width:250px">
    <input type="text" class="form-control" id="account_name" style="width:200px;height:35px" />
    <input id="btn_account" type="button" style="margin-left:10px;height:35px;width:50px" value="GO" />
  </div>
</script>


$scope.attach_account = function () {
    //attach_account_template
    ngDialog.open({ template: 'attach_account_template', scope: $scope });
};

0 个答案:

没有答案