我試圖使用引導模式內的按鈕來鏈接到我的網站上的另一個頁面。由於某種原因,我無法做到這一點。下面是該模式中的代碼看起來像:無法打開模式內的鏈接的另一個頁面
<div class="modal-footer">
<a href="another-page.php" data-dismiss="modal" class="btn btn-success">Read More</a>
<button type="button" data-dismiss="modal" class="btn btn-warning">Close</button>
</div><!-- End modal-footer -->
點擊閱讀更多按鈕將關閉該模式,但無法打開鏈接到另一個-page.php文件。是否有另一個標籤,我錯過了?
控制檯中是否存在任何錯誤? –