我有一个 PHP while 循环,我在其中动态生成#id。
例子 :
<?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 等...
我希望我的 JS 代码中的所有这些 Id 在加载时将其显示到模式对话框中。
例子 :
<script type="text/javascript">
$(document).ready(function(){
$("#status1");
$("#status2");
$("#status3");
.
.
and so on as per the php while loop.
});
</script>
我怎样才能做到这一点?