时间:2021-05-28
1.新建uiBootstrap.html页面,引入依赖的js和css类库
2.新建uiBootstrap.js文件,定义一个uiModule 模块,引入依赖的模块
/** * Created by zhong on 2015/9/7. */var uiModule = angular.module("uiModule",["ui.bootstrap","ui.router"]);});3.定义dialog弹出窗口的模板
4.定义一个 UiController,并声明一个用于打开dialog弹出框的函数openDialog
uiModule.controller("UiController",function($scope,$modal){//打开dialog的函数$scope.openDialog = function(){$modal.open({ templateUrl:"myModalContent.html",//dialog的id,与html建立的template的id一致controller:"ModalController"//指定dialog的controller}); };})5.定义dialog弹出框的 ModalController
这个controller中声明弹出框中确认和取消按钮的单击事件的处理函数
controller("ModalController",function($scope, $modalInstance){//定义dialog中的确认按钮的点击事件的处理函数$scope.ok = function(){$modalInstance.close();//};//定义dialog中的取消按钮的点击事件的处理函数$scope.cancel = function(){$modalInstance.dismiss('cancel'); }});5.在uiBootstrap.html文件中添加一个按钮,用于打开窗口
<div ng-controller="UiController"> <button ng-click="openDialog()" class="btn btn-default">打开弹出窗口</button></div>6.效果
补充:
以上所述是小编给大家介绍的Angularjs中的ui-bootstrap的使用教程,希望对大家有所帮助!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在AngularJS中使用模态框需要引用的文件:angular.js1.5.5ui.bootstrap-tpls.js0.11.2bootstrap.css3.
最近在学习angular(AngularJS2),根据教程使用angular-cli新建项目,然而在添加JQuery和Bootstrap第三方库时遇到了问题..
BootStrapValidator可以用于完成基于BootStrap搭建的前端UI中的输入验证,由于本插件完全基于BootStrap因此可以和UI完美的融合在
AngularJS的数据表格需要使用angualarjs、bootstrap、dirPagination.js效果图:1.html部分angularjs的数据表
本文实例介绍了angularjs创建弹出框实现拖动效果的相关代码,项目中需要将angular-ui-bootstrap中用到的弹出框,使之可拖动,分享给大家供大