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 カラーボックス呼び出しを使用して、自分のページにページを読み込んでいます。現時点では私はちょうど使用しています
$('.ajax').colorbox();
私は次のようなことができるかもしれないと思った
$('.ajax#content').colorbox();
セレクターを渡してページの一部を取得するにはどうすればよいですか?
セレクターに変数を渡すという意味ですか?その場合、それは次のようになります。
var myVariable = 'test'; //Your variable goes here $('.ajax#' + myVariable).colorbox();