1
我正在使用lightcase.js將另一頁作爲iframe加載到我的頁面上。在這裏,我還使用dataTables.js將數據呈現給我的用戶,以便他可以在與該記錄相關的末尾單擊一個眼睛圖標,以便他可以查看更多信息並使用lightrame在與iframe相同的頁面中打開該頁面。Lightcase.js和dataTables.js衝突
問題是,在我的datable的頁面1它工作正常。但是當它有更多的記錄並且轉到大於1的頁面時,燈箱停止工作,所以當用戶點擊眼睛圖標頁面時,瀏覽器將重定向到該頁面。
示例代碼:
<script src="http://localhost/mysite/assets/js/jquery.dataTables.min.js"></script>
<script src="http://localhost/mysite/assets/js/lightcase.js"></script>
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>ID</th>
<th>Contact #</th>
<th>Time</th>
<th>Product</th>
.....
.....
</tr>
</thead>
<tbody>
<tr>
<td>9</td>
<td>0718064010</td>
<td>2015-06-23 11:30:20</td>
<td>takas</td>
.....
.....
<td><a href="http://localhost/mysite/index.php/inquiry/view/9" data-rel="lightcase:myCollection"><i class="fa fa-eye"></i></a></td>
</tr>
</tbody>
</table>
<script>
$(document).ready(function() {
$('#example').DataTable();
});
</script>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$('a[data-rel^=lightcase]').lightcase();
});
</script>
請幫我解決這個問題。謝謝。
非常感謝。它像一個魅力。我是JavaScript和事件新手,所以你的回答讓我瞭解了很多。 – ssudaraka