0
我在單個頁面上使用bpopup來顯示用戶的個人資料(由於這我不能把鏈接)個人jQuery bPopup在頁面上的可共享鏈接?
並且每個項目都有唯一的ID,並附有單獨的代碼。
,纔有可能分享的特定用戶的彈出作爲單獨的URL
例如www.domain.com/profile#user-3146374
然後,當人們點擊鏈接,頁面打開和bpopup自動啓動
<a href="#" id="button-3146374">
<div class="image">Image goes here</div>
</a>
<div class="driver-profile" id="user-3146374" style="display:none;">
-- pop up content --
</div>
<script type="text/javascript">
$(function($) {
$(function() {
$('#button-3146374').bind('click', function(e) {
e.preventDefault();
$('#user-3146374').bPopup();
});
});
</script>