3
我使用Fancybox v2.1.5-0並嘗試綁定另一個div的內容。如何綁定fancybox內容形成另一個div內容?
內容圖像已經在HTML頁面的另一個div中。
這裏我的HTML代碼:
Bootstrap 3 carousel
---------------------------------------------------------------
<div class="hotelsd-img">
<div id="photoCarousel-1" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img class="img-responsive" src="http:\\www.confirmedrooms.com\hotelbooking\images\hotelimages\1110\031742.jpg" alt="Hotel Name">
</div>
<div class="item active">
<img class="img-responsive" src="http:\\www.confirmedrooms.com\hotelbooking\images\hotelimages\1110\031742.jpg" alt="Hotel Name">
</div>
<div class="item active">
<img class="img-responsive" src="http:\\www.confirmedrooms.com\hotelbooking\images\hotelimages\1110\031742.jpg" alt="Hotel Name">
</div>
</div>
</div>
</div>
Photo Count
--------------------------------------------------------
<div id="hotelGallery-1" class="photoCount">
<a href="#" class="openGallery">View all 15 Photos</a>
</div>
現在,我想開畫廊的fancybox上openGallery click事件。
我有包括頭的fancybox文件:
<script src="js/jquery.min.js"></script>
<link rel="stylesheet" href="js/plugins/fancybox/jquery.fancybox.css">
<script src="js/plugins/fancybox/jquery.fancybox.pack.js"></script>
JS代碼,我嘗試這樣的:
$('.openGallery').on('click',function(){
$.fancybox({
// Possible code here
});
});
所以,如何從項目格複製內容和推入的fancybox內容和開放。幫我建立這個。
我覺得你沒沒有問題,OP想要一個Fancybox畫廊,而不是整個圖像在一個fancybox – JFK
@JFK,我實際上錯過了這條線'現在,我想打開Fancybox畫廊openGallery點擊事件.'感謝指出 – Shehary
@JFK由w唉,你總是先拍,然後問問題:P – Shehary