colorbox - ajax获取div或section

时间:2012-10-22 10:38:17

标签: jquery ajax selector colorbox

我正在使用ajax colorbox调用在我的页面上加载页面。目前我正在使用

$('.ajax').colorbox();

我以为我可以做一些像

这样的事情
$('.ajax#content').colorbox();

如何通过传递选择器来拉取页面的一部分?

1 个答案:

答案 0 :(得分:0)

你的意思是将变量传递给选择器吗?在这种情况下,这将是:

var myVariable = 'test'; //Your variable goes here

$('.ajax#' + myVariable).colorbox();