#id を動的に生成する PHP while ループがあります。
例 :
<?php
$i=1;
while ($row = mysqli_fetch_array($result)):
?>
<tr>
<td class='hashtag' id='status<?php echo $i; ?>'>status value</td>
</tr>
<?php
$i++;
endwhile:
?>
ステータス ID は次のように生成されます: status1、status2、status3 など...
モーダル ダイアログに表示するために、これらすべての Id を JS コードの ON LOAD に含めたいと思います。
例 :
<script type="text/javascript">
$(document).ready(function(){
$("#status1");
$("#status2");
$("#status3");
.
.
and so on as per the php while loop.
});
</script>
どうすればこれを達成できますか?