while ループで jQuery Dropdown CheckList を使用したいと考えています。ただし、最初の行にのみ jQuery ドロップダウン チェックリストを表示します。行の残りの部分では、jQuery Dropdown Checklist 関数は呼び出されませんでした。jQuery 関数を動的に呼び出す方法はありますか。
//This is the java script for calling the dropdown list
<meta http-equiv="refresh" content="600" >
<!-- Apply dropdown check list to the selected items -->
<script type="text/javascript">
$(document).ready(function(){$("#s1").dropdownchecklist( { width: 300 } );});
</script>
//this is the while loop which display the list of row with drop down checklist in it
//display the list of rows
while($rows = mysql_fetch_array($query)){
<select id="s1" multiple="multiple" >
<option value=""></option>
<?php while($rowsakh= mysql_fetch_array($resultakh)) { ?>
<option value='<?php echo $rowsakh['diet_id']; ?>'><?php echo $rowsakh['diet_name']; ?></option> <?php } ?>
</select>
}//end while loop
id="s1"
ループごとに増加する動的変数にしようとすると。id="s1"
私がそれを行うための動的または構文を作成する方法はありますか。