Created
September 22, 2012 09:07
-
-
Save MaySnow/3765616 to your computer and use it in GitHub Desktop.
删除询问
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
<!DOCTYPE HTML> | |
<html > | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" /> | |
<style type="text/css"> | |
.modal-backdrop.fade.in { | |
opacity : 0.5 | |
} | |
</style> | |
</head> | |
<body> | |
<a href="#del" id="newfolder" style="color:#000" data-toggle="modal" class="btn">删除</a> | |
<div class="modal fade hide" id="del" tabindex="-1" role="dialog" aria-labelledby="delLabel" aria-hidden="true"> | |
<div class="modal-header" style="height:15px"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
</div> | |
<div class="modal-body"> | |
您确定要删除吗? | |
</div> | |
<div class="modal-footer"> | |
<button class="btn btn-primary">确定</button> | |
<button class="btn" data-dismiss="modal" aria-hidden="true">取消</button> | |
</div> | |
</div> | |
<script type="text/javascript" src="js/jquery.js"></script> | |
<script type="text/javascript" src="js/bootstrap.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment