我這裏有一個應用程序:application它沒有顯示所有圖像
在我使用的是基本的jQuery的滑塊,頁面演示是在這裏:page info
現在我遇到的問題是,它的顯示器問題1中的圖像,但不是問題2中的圖像。現在,在我包含滑塊之前,它會在所有問題中顯示圖像。但是因爲我包含滑塊,所以它只在第一個問題中顯示圖像。我怎樣才能讓圖像在所有問題中顯示?
CODE:
<form action='results.php' method='post' id='exam'>
<?php
foreach ($arrQuestionId as $key=>$question) {
?>
<div class='lt-container'>
<p><?php echo htmlspecialchars($arrQuestionNo[$key]) . ": " . htmlspecialchars($arrQuestionContent[$key]); ?></p>
<?php
//start:procedure image
$img_result = '';
if(empty($arrImageFile[$key])){
$img_result = ' ';
}else{
?>
<div id="banner-slide">
<ul class="bjqs">
<?php foreach ($arrImageFile[$key] as $i) { ?>
<li><img alt="<?php echo $i; ?>" height="200" width="200" src="<?php echo 'ImageFiles/'.$i; ?>"></li>
<?php } ?>
</ul>
</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#banner-slide').bjqs({
animtype : 'slide',
height : 200,
width : 200,
responsive : true,
randomstart : true
});
});
</script>
<?php
}
//end:procedure image
?>
</div>
<?php
}
?>
</form>
最佳答案,你在第一個代碼片段中提到的是應該做什麼 – user2048994 2013-02-10 01:10:40