0
我有很多圖片必須與bootstrap模態一起製作。與JS一起工作的功能現在正常,但我想優化代碼。這是HTML代碼。包含外部模態html文件
HTML
<img id="courseImage" src="/images/thumbs/image1.jpg" alt="Trolltunga, Norway" width="300" height="200">
<!-- The Modal -->
<div id="courseModal" class="modal">
<!-- The Close Button -->
<span class="close" onclick="document.getElementById('courseModal').style.display='none'">×</span>
<!-- Modal Content (The Image) -->
<img class="modal-content" id="img01">
<!-- Modal Caption (Image Text) -->
<div id="caption"></div>
</div>
請問有沒有辦法,在那裏我可以包括一些HTML的。我試圖這樣做,但這不起作用。
<img id="courseImage" src="/images/thumbs/image1.jpg" alt="Trolltunga, Norway" width="300" height="200">
<?php include $_SERVER['DOCUMENT_ROOT'] . '/resources/includes/courseModal.html' ?>
我只是想,如果我必須設置爲100左右畫面的HTML,有要去的HTML代碼有很多很多的一個文件內。每張照片需要6行代碼。
對於模式..您可以移動到emodal.js或bootbox.js http://saribe.github.io/eModal/#demo http://bootboxjs.com/examples.html –