我实际上为UI下载了bootstrap-4模板。我目前正在对其进行自定义。在这里,我想向页面添加一些Modal弹出窗口,我引用了W3schools的代码,其中包含一些CSS和JS链接,但是如果我只是将其粘贴到模板中,它将改变外观。问题是因为我的模板已经为页面本身提供了一些参考链接,因此当我添加其他内容时,它会更改现有结构。我应该在哪里添加它以保持相同的代码而不更改现有结构?
我尝试在代码的顶部和底部粘贴,但是这样做会改变整个页面的外观。我什至尝试使用没有这些链接有效的代码,但是模式框的样式不正确。
<!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/4.2.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Centered Modal Example</h2>
<p>Center the modal vertically and horizontally within the page, with the .modal-dialog-centered class.</p>
<!-- Button to Open the Modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
Open modal
</button>
<!-- The Modal -->
<div class="modal fade" id="myModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Modal Heading</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
Modal body..
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
我必须包括所有这些链接吗?请帮助我添加代码而不更改现有样式。