Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ajax colorbox 调用在我的页面上加载一个页面。目前我只是在使用
$('.ajax').colorbox();
我以为我可以做类似的事情
$('.ajax#content').colorbox();
如何通过传递选择器来拉出我的页面的一部分?
您的意思是将变量传递给您的选择器吗?在这种情况下,这将是这样的:
var myVariable = 'test'; //Your variable goes here $('.ajax#' + myVariable).colorbox();