0
我正在嘗試整合jQuery shadowbox
。所以我需要知道它是否可以用於td
。根據shadowbox的文檔,必須爲鏈接添加rel=shadowbox
。jQuery的軌道應用程序中的陰影框
但在我的情況下,我有table
而不是鏈接。所以當用戶點擊任何td
的時候,shadowbox應該打開。它是否與shadowbox?
我正在嘗試整合jQuery shadowbox
。所以我需要知道它是否可以用於td
。根據shadowbox的文檔,必須爲鏈接添加rel=shadowbox
。jQuery的軌道應用程序中的陰影框
但在我的情況下,我有table
而不是鏈接。所以當用戶點擊任何td
的時候,shadowbox應該打開。它是否與shadowbox?
從docs摘自:
Shadowbox.init({
// skip the automatic setup again, we do this later manually
skipSetup: true
});
window.onload = function() {
// set up all anchor elements with a "movie" class to work with Shadowbox
Shadowbox.setup("a.movie", {
gallery: "My Movies",
autoplayMovies: true
});
};
在你的情況下,使用td.your_class
代替a.movie
。
編輯: 我不知道應該是什麼內容,但你可以這樣做:
Shadowbox.init({
skipSetup: true
});
$('table td').click(function(e) { // when td is clicked..
Shadowbox.open({
content: '<p>Put your content here.</p>',
player: 'html',
title: 'My shadowbox'
});
});
注意player
和content
。
那麼我會爲圖庫選項提供哪些輸入?我基本需要的是在shadowbox中顯示一個表單。 – rubyist