すべての ID を jQuery 関数に渡しています。今、特定のIDにのみjQueryを適用したいと思います。助けてください
この関数では、id パラメータが php onmouseover から渡され、その値の範囲は 0 から 100 であるとします。
function un(id){ //this id has the ids from 0 to 100 and I only want to apply css effects to the id=33 //alert(id); $('#33').css('text-decoration', 'underline'); }
IDが配列内にある場合、これらのIDを上記のjQuery関数に渡す方法と、セレクターで使用する方法を教えてください。仮定する、
<?php $children = $this->get_child_nodes2($id); echo implode("", $children); ?>
質問する
59 次