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.
子の div をその名前で検索し、その名前を特定の変数の文字列値と比較するにはどうすればよいでしょうか?
これは私が何を考えているかの考えです:
var vname="whatever"; if($("#container").children().attr('name')==vname{ $("#container").children().attr(vname).addClass("selected"); }
一部のフィルターも使用できます
var vname="whatever"; $("#container") .children() .filter(function(){ return $(this).attr('name') == vname; }) .addClass("selected");