0

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

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

我以为我可以做类似的事情

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

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

4

1 回答 1

0

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

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

$('.ajax#' + myVariable).colorbox();
于 2012-10-22T10:54:37.643 回答