0

私の画像リンクは、それぞれ箇条書きで表示されるはずです。問題は、画像リンクごとに箇条書きを表示するのではなく、すべての画像リンクに対して箇条書きを 1 つだけ表示していることです。私のphp/htmlで何が間違っていますか?

<table id="tableqanda" cellpadding="0" cellspacing="0">
    <thead>
    <tr>
        <th width="11%" class="image">Image</th>
    </tr>
    </thead>
    </table>
    <div id="tableqanda_onthefly_container">
    <table id="tableqanda_onthefly" cellpadding="0" cellspacing="0">
    <tbody>
    <?php

                function CreateLink($filename, $type){
 if($type == 'image'){
  return '<a href="previewimage.php?filename='.$filename.'" title="Click to view in New window" target="_blank">'.htmlspecialchars($filename).'</a>';
 }
}

          foreach ($arrQuestionId as $key=>$question) {
        echo '<tr class="tableqandarow">'.PHP_EOL;
        //start:procedure
        $img_result = '';
        if(empty($arrImageFile[$key])){
          $img_result = '&nbsp;';
        }else{
          $img_result .=  '<ul class="qandaul"><li>';
           if(is_array( $arrImageFile[$key] )){
            foreach($arrImageFile[$key] as $filename){
             $img_result.= CreateLink($filename, "image");
            }
           }else{
            $img_result.= CreateLink($arrImageFile[$key], "image");
           }
           $img_result.= '</li></ul>';
        }
        //end:procedure

        echo '<td width="11%" class="imagetd">'.$img_result.'</td>' . PHP_EOL;
        echo '</tr>'.PHP_EOL;

}

?>
    </tbody>
    </table>
    </div>

現時点での様子を示すスクリーンショット:

ここに画像の説明を入力

4

1 に答える 1

2

おそらく、すべてのリンクを<li>タグに入れたいと思うでしょう:

交換:

$img_result.= CreateLink($filename, "image");

と:

$img_result.= '<li>' . CreateLink($filename, "image") . '</li>;
// the other places where you use that function as well...

そして、リストが<ul>タグでのみ開始および終了することを確認してください(追加の ではありません<li>

于 2013-01-27T01:49:10.120 に答える