4
jQuery .hasClass()と.is()
パフォーマンスの観点から、要素にクラスが割り当てられているかどうかを判断する好ましい方法はありますか? $('#foo').hasClass('bar'); または $('#foo').is('.bar');
96
jquery