0
  1. すべての 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');
    }   
    
  2. IDが配列内にある場合、これらのIDを上記のjQuery関数に渡す方法と、セレクターで使用する方法を教えてください。仮定する、

    <?php 
      $children = $this->get_child_nodes2($id);
      echo  implode("", $children);      
    ?>
    
4

1 に答える 1

2

jQuery が動的検索に使用する文字列を作成します。

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);
  $('#' + id).css('text-decoration', 'underline');
}  
于 2012-10-21T15:13:31.547 に答える