在一个页面中,大约有150个子菜单(可扩展)。每次单击子菜单都会打开一个模式,其中包含子菜单的特定信息。数据最初是在页面加载时提取的。我想知道什么是实现模态的更好方法。
我应该在同一页中写150个模态,还是写一个模态然后动态创建内容?
对于后一种选择,我需要一个例子。
使用的技术:Bootstrap,HTML,CSS,jQuery。
您可能喜欢我创建的这个示例,如果您不了解任何位置,请告诉我。
$(document).ready(function(e) {
// Initializing our modal.
$('#myModal').modal({
backdrop: 'static',
keyboard: false,
show: false,
});
$(document).on("click", ".modalButton", function() {
var ClickedButton = $(this).data("name");
// You can make an ajax call here if you want.
// Get the data and append it to a modal body.
$(".modal-body").html("<p>" + ClickedButton + "</p> <p>Some text in the modal.</p> ");
$('#myModal').modal('show');
});
});
<!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="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Modal Example</h2>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg modalButton" data-name="Clicked Modal 1" data-toggle="modal">Open Modal 1</button>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg modalButton" data-name="Clicked Modal 2" data-toggle="modal">Open Modal 2</button>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg modalButton" data-name="Clicked Modal 3" data-toggle="modal" >Open Modal 3</button>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg modalButton" data-name="Clicked Modal 4" data-toggle="modal">Open Modal 4</button>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg modalButton" data-name="Clicked Modal 5" data-toggle="modal">Open Modal 5</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>
您可以只创建一个模态。正如您所提到的,您将有150菜单,这样您就可以给它们一个通用类名,并使用jquery获取这些按钮/菜单的点击事件。如果需要的话,您可以使用一些ajax调用来获取一些动态数据。将您的响应附加到模态主体,然后只显示模态。就是这样!!
您可以在页面中编写一个模态。然后,每次单击子菜单时,调用一个异步函数来获取适当的数据,将它们附加到模态中并显示:
jQuery
$(document).on('click', '.submenu', function() {
$.ajax({
url: 'path/to/file',
method: 'POST',
data: { ... },
success: function(data) {
// Get the data and fill the modal
// Show modal
$('#myModal').modal('show');
},
error: function() {
// Error handling
}
});
});
当然,您应该编写一个模态并根据需要生成内容。如果你选择第一个选项,那么每次你需要在公共区域进行更改时,你都必须更改+150个文件!这是非常糟糕的做法。
您需要记住,web应用程序应该是一致的。这样你会节省很多时间和精力。
此外,你计划如何实现它。一次加载150个模态窗口,然后等待数据?:P
在我看来,创建一个将成为框架的模式,然后用数据填充它,如果你需要的话,可以在其他模板文件中为特定的情况添加一些东西。
干杯!
使用jQuery动态加载数据。我假设你有打开每个模态的按钮?
http://jsfiddle.net/h3WDq/
$('#myModal1').on('show.bs.modal', function (event) {
var button = $(event.relatedTarget) // Button that triggered the modal
// Extract info from data-* attributes
// If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
// Update the modal's content. I'm using use jQuery here, you could use it to load your data
var modal = $(this)
modal.append("<p>Test</p>");
})