大家好,我想创建一个下拉菜单来选择时间。我使用 javascript 来获取计算机的时间。然后,如果计算机的时间等于下拉菜单的值,我想有一个输出,那么应该选择输出。下面是我的代码。
<script type="text/javascript">
function time(){
var currentTime = new Date();
$hours = currentTime.getHours();
document.write($hours);
}
</script>
<select>
<?php $hr="<script>time();</script>";//calling the output from javascript
for($i = 0; $i < 24; $i++): ?>
<option value="<?= $i; ?>" <?if ($i==$hr) echo "selected";?> >
<?= $i % 12 ? $i % 12 : 12 ?> <?= $i >= 12 ? ' pm' : ' am' ?>
</option>
<?php endfor ?>
</select>