时间:2021-05-28
这篇文章主要介绍了angularjs模态框的使用代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
编写html页面
1.触发模态框的点击事件
<div><button type="button" class="btn btn-primary" ng-click="openAddModal()" data-toggle="modal"data-target="#documentOprModal" style="margin-left: 10px;float:left"><i class="glyphicon glyphicon-plus"></i>{{ 'i18n.add' | translate }}</button></div>2.模态框页面
<div class="modal fade" id="documentOprModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" data-backdrop="static" data-keyboard="false"> <div class="modal-dialog modal-lg" role="document" style="width: 600px;"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="myModalLabel"> 文档入库</h4> </div> <div class="modal-body"> <!--开发--> <form name="docForm" id="docForm" novalidate> <!-- 分类 --> <div class="form-group"> <label class="col-lg-12 col-md-12 col-xs-12" style="padding: 0;">分类:</label> <div class="input-group col-lg-12 col-md-12 col-xs-12"> <div class="input-group"> <input type="text" ng-model="document.classification_name" class="form-control" placeholder="选择分类"> <div class="input-group-btn"> <button type="button" class="btn btn-default" style="height: 30px" ng-click="toggleDetail()"> <span class="caret"></span></button> </div> </div> <div ng-show="isShowDetail" style="position: absolute;z-index: 9999;width: 560px;"> <div class="panel panel-default"> <div class="panel-body list-group list-group-contacts"> <div> <ul id="classify-tree" class="ztree"></ul> </div> </div> </div> </div> </div> </div> <!-- 星级 --> <div class="form-group"> <label class="col-lg-12 col-md-12 col-xs-12" style="padding: 0;">星级:</label> <div class="input-group col-lg-12 col-md-12 col-xs-12"> <ui-select ng-model="document.starGrade" theme="selectize"> <ui-select-match placeholder="请选择星级"> <span ng-bind="$select.selected.name"></span> </ui-select-match> <ui-select-choices repeat="item.id as item in (starGrades | filter: $select.search) track by $index "> <div ng-bind-html="item.name | highlight: $select.search"></div> </ui-select-choices> </ui-select> </div> </div> <!-- 井号 --> <div class="form-group"> <label for="jhText">井号:</label> <input type="text" class="form-control" id="jhText" ng-model="document.jh"> </div> <!-- 作者 --> <div class="form-group"> <label for="authorText">作者:</label> <input type="text" class="form-control" id="authorText" ng-model="document.author"> </div> <!-- 单位 --> <div class="form-group"> <label for="unitText">单位:</label> <input type="text" class="form-control" id="unitText" ng-model="document.unit"> </div> <!-- 日期 --> <div class="form-group"> <label for="writeDate">写作日期:</label> <input type="date" class="form-control" id="writeDate" ng-model="document.writeDate"> </div> <!-- 简介 --> <div class="form-group"> <label for="introductionTextArea">简介:</label> <textarea class="form-control" id="introductionTextArea" ng-model="document.introduction" rows="5" cols="60"></textarea> </div> <!-- 可能的查询关键字 --> <div class="form-group"> <label for="keyPackageTextArea">可能的查询关键字:</label> <textarea class="form-control" id="keyPackageTextArea" ng-model="document.keyPackage" rows="5" cols="60"></textarea> </div> <!-- 文件 --> <div class="form-group"> <div id="inputContent"> <input id="importFile" type="file" name="file" class="file-loading"> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-primary" ng-click="submitFileInfo()"><i class="fa fa-check"></i>{{ 'i18n.save' | translate }} </button> <button type="button" class="btn btn-default" data-dismiss="modal" style="margin: 0px 20px;"><i class="fa fa-ban"></i>{{ 'i18n.cancel' | translate }} </button> </div> </div> </div></div>3.编写对应的js
/** * 点击 添加事件打开模态框 */ function openAddModal() { $('#documentOprModal').modal({ show: true, keyboard: false, backdrop: 'static' }); }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
下表列出了模态框中要用到事件。这些事件可在函数中当钩子使用。实例下面的实例演示了事件的用法:Bootstrap实例-模态框(Modal)插件事件模态框(Moda
在AngularJS中使用模态框需要引用的文件:angular.js1.5.5ui.bootstrap-tpls.js0.11.2bootstrap.css3.
本文实例为大家分享了bootstrap模态框的具体代码,供大家参考,具体内容如下XXXaaaaa×登录hahaheheheihei注册登录点击弹出完整模态框点击
本文实例为大家分享了Bootstrap模态框的两种使用状况,供大家参考,具体内容如下一.模态框的正常点击出现,如添加功能
本文实例为大家分享了小程序模态框组件的封装具体代码,供大家参考,具体内容如下一、前言对于模态框肯定大家都知道,诸如:Bootstartp、element-ui、