我正在使用ajax colorbox调用在我的页面上加载页面。目前我正在使用
$('.ajax').colorbox();
我以为我可以做一些像
这样的事情$('.ajax#content').colorbox();
如何通过传递选择器来拉取页面的一部分?
答案 0 :(得分:0)
你的意思是将变量传递给选择器吗?在这种情况下,这将是:
var myVariable = 'test'; //Your variable goes here
$('.ajax#' + myVariable).colorbox();