当页面第一次加载时,我需要检查image_array
中是否有图像,并加载最后一张图像。
否则,我禁用预览按钮,提醒用户按新的图像按钮,并创建一个空数组来放置图像;
问题是else
中的image_array
一直被触发。如果一个数组存在-它只是覆盖它,但警报不工作。
if(image_array.length > 0)
$('#images').append('<img src="'+image_array[image_array.length-1]+'" class="images" id="1" />');
else{
$('#prev_image').attr('disabled', 'true');
$('#next_image').attr('disabled', 'true');
alert('Please get new image');
var image_array = [];
}
< p >更新
在加载html之前,我有这样的东西:
<?php if(count($images) != 0): ?>
<script type="text/javascript">
<?php echo "image_array = ".json_encode($images);?>
</script>
<?php endif; ?>