使用jquery隐藏和显示php动态创建的内容“搜索结果”

时间:2011-03-30 18:31:21

标签: php jquery dynamic

我有一个显示我的搜索结果的表,如果用户打开了一个函数,则挂起我想要每行只显示5个结果,如果它们已关闭则相同我希望显示7个结果。这工作正常,但我遇到的问题是当我切换div隐藏或显示的函数时,但动态创建的PHP内容仍然可见。我知道div隐藏或显示挂起函数,因为我在动态创建div中编写了静态文本,并在函数中显示或隐藏了文本。

问题:如何隐藏php内容? PHP内容=

/*BIG*/
    //begin new row
    if($result_incBig == $beginRowBig){
        $b .= '<tr>';   
        //row color
        $row_color = ($color_incBig % 2) ? 'tdAltRow_A' : 'tdAltRow_B';
        if($i == ($num_qk-1)){
            $secondRowClass = 'tdAltRow_noBorder';
        }else{
            $secondRowClass = 'tdAltRow';
        }
        //increment the color of the row
        ++$color_incBig;                
    }
    $b .= '<td class="td_formTitle_noBorder" align="center" style="padding:0px; text-indent: 0;" width="165" height="115" valign="bottom">';
        $b .= '<table width="100%" cellpadding="0" cellspacing="0" border="0">';
            $b .= '<tr>';
                $b .= '<td align="center" style="height:80px; padding:4px; vertical-align:middle;">'.$appendLinkBegin.$companyPic.$appendLinkEnd.'</td>';
            $b .= '</tr>';
            $b .= '<tr>';
                $b .= '<td align="center" style="height:35px; padding:2px; vertical-align:bottom;">'.$appendLinkBegin.'<b>'.$company_name.'</b>'.$addSpace.'<br />'.$num2.' '.$resultText.$appendLinkEnd.'</td>';
            $b .= '</tr>';
        $b .= '</table>';
    $b .= '</td>';
    //end row if out of results or reached max num for row
    if($result_incBig == $endRowBig){
        $b .= '</tr>';
        $result_incBig = 0;
    }else if(($i+1) == $num_qk){
        if($result_incBig < $endRowBig){
            for($e=0;$e<=($endRowBig-$result_incBig);++$e){
                $b .= '<td class="td_formTitle_noBorder" align="center" style="padding:0px; text-indent: 0;" width="165" height="115" valign="bottom"><!--space--></td>'; 
            }
            $b .= '</tr>';  
            $result_incBig = 0;
        }
    }
    //increment inc 
    ++$result_incBig;
    /*END BIG*/

    /*SMALL*/
    //begin new row
    if($result_incSmall == $beginRowSmall){
        $s .= '<tr>';   
        //row color
        $row_color = ($color_incSmall % 2) ? 'tdAltRow_A' : 'tdAltRow_B';
        if($i == ($num_qk-1)){
            $secondRowClass = 'tdAltRow_noBorder';
        }else{
            $secondRowClass = 'tdAltRow';
        }
        //increment the color of the row
        ++$color_incSmall;              
    }
    $s .= '<td class="td_formTitle_noBorder" align="center" style="padding:0px; text-indent: 0;" width="165" height="115" valign="bottom">';
        $s .= '<table width="100%" cellpadding="0" cellspacing="0" border="0">';
            $s .= '<tr>';
                $s .= '<td align="center" style="height:80px; padding:4px; vertical-align:middle;">'.$appendLinkBegin.$companyPic.$appendLinkEnd.'</td>';
            $s .= '</tr>';
            $s .= '<tr>';
                $s .= '<td align="center" style="height:35px; padding:2px; vertical-align:bottom;">'.$appendLinkBegin.'<b>'.$company_name.'</b>'.$addSpace.'<br />'.$num2.' '.$resultText.$appendLinkEnd.'</td>';
            $s .= '</tr>';
        $s .= '</table>';
    $s .= '</td>';
    //end row if out of results or reached max num for row
    if($result_incSmall == $endRowSmall){
        $s .= '</tr>';
        $result_incSmall = 0;
    }else if(($i+1) == $num_qk){
        if($result_incSmall < $endRowSmall){
            for($e=0;$e<=($endRowSmall-$result_incSmall);++$e){
                $s .= '<td class="td_formTitle_noBorder" align="center" style="padding:0px; text-indent: 0;" width="165" height="115" valign="bottom"><!--space--></td>'; 
            }
            $s .= '</tr>';  
            $result_incSmall = 0;
        }
    }
    //increment inc 
    ++$result_incSmall;
    /*END SMALL*/
}
//display table
if($where == ''){
    $b = '<input type="hidden" name="numberRes" id="numberRes" value="No Results" />';
    $s = '<input type="hidden" name="numberRes" id="numberRes" value="No Results" />';
}   
echo '<table cellpadding="0" cellspacing="0" border="0" width="100%">';
    //results
    echo '<div class="rowFillBig">big7Results'.$b.'</div>';
    echo '<div class="rowFillSmall" style="display:none;">small5Results'.$s.'</div>';
echo '</table>';

Jquery函数:

$(function () {
    $('#tab_1').click(function(){
        $('#tab_vid').toggle();
        if ($("#mainContentRF").width() == 825){
            $("#mainContentRF").width(1180);
            $("audio").width(800);
            //if viewing the full screen pause video
            <?php if($viewingVideo > ''){ ?>
            video = $('.videoplayer').get(0);
            video.pause();
            <?php } ?>
            <!--hide small-->
            $(".rowFillSmall").css("display", "none");
            <!--show big-->
            $(".rowFillBig").css("display", "inline");
        }else{
            $("#mainContentRF").width(825);
            $("audio").width(500);
            <!--show small-->
            $(".rowFillSmall").css("display", "inline");
            <!--hide big-->
            $(".rowFillBig").css("display", "none");
        }
    <!--if tab was left open dont close it-->
    <?php if($acc_openValue_1 == '99'){ ?>
        })
    <?php }else{ ?>
        }).click();
    <?php } ?>
});

如果我能更清楚,请告诉我。基本上div和内部的任何内容应该在被要求时隐藏,并在被问到时显示。

1 个答案:

答案 0 :(得分:0)

将div放在桌子的外面,就像这样。

    echo '<div class="rowFillBig">';    
    echo '<table cellpadding="0" cellspacing="0" border="0" width="100%">';
        //results
        echo $b;
    echo '</table>';
echo '</div>';
echo '<div class="rowFillSmall" style="display:none;">';
    echo '<table cellpadding="0" cellspacing="0" border="0" width="100%">';
        //results
        echo $s;
    echo '</table>';
echo '</div>';