Skip to content

Instantly share code, notes, and snippets.

@MaySnow
Created September 22, 2012 09:07
Show Gist options
  • Save MaySnow/3765616 to your computer and use it in GitHub Desktop.
Save MaySnow/3765616 to your computer and use it in GitHub Desktop.
删除询问
<!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