1
$(document).ready(function(){
$("#myBtn").click(function(){
$("#myModal").modal();
});
});
/*
function showPopup()
{
document.getElementById("myModal").display = "block";
}
*/
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Activate Modal with JavaScript</h2>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg" id="myBtn" onclick="showPopup()">Open Modal</button>
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
我學習引導模態插件,在這裏有一個問題。
如何使用JavaScript而不是JQuery顯示模態?
喜歡:
document.getElementById("myModal").modal();
它顯示錯誤:模式是不是一個函數。
我也嘗試過顯示從無到塊。
document.getElementById("myModal").display = "block";
它也不起作用。
不,你不能這樣做。 modal()是$()的擴展方法。你必須使用它與jQuery。 – wannadream
使用jQuery有什麼問題? – Annjawn