Created
December 5, 2013 01:41
-
-
Save congjf/7798814 to your computer and use it in GitHub Desktop.
Using Modal from Bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="lib/jquery/jquery.js"></script> | |
<script src="lib/bootstrap/bootstrap.js"></script> | |
<!-- Button --> | |
<button class="btn btn-default" data-toggle="modal" data-target="#AddSection">添加部门</button> | |
<!-- Modal --> | |
<div class="modal fade" id="AddSection" role="dialog" aria-labelledby="AddSection" aria-hidden="true"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-header">添加工作信息</div> | |
<div class="modal-body"> | |
<!-- Modal Body --> | |
<form role="form"> | |
<!-- Form Content --> | |
</form> | |
<!-- Modal Body End --> </div> | |
<div class="modal-footer"> | |
<button type="button" class="btn btn-default">提交</button> | |
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment