第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如果 <td> 為空,則無法隱藏 <tr>

如果 <td> 為空,則無法隱藏 <tr>

PHP
當(dāng)年話下 2023-07-08 15:47:59
<tr>僅當(dāng)沒有可用數(shù)據(jù)時(shí)我才想隱藏<td>。我嘗試了許多腳本以及 if 條件。但沒有運(yùn)氣。請(qǐng)幫忙。<table class="table table-striped why-choose-tbl" id="insurance">   <thead>      <tr>         <th scope="col"></th>         <th scope="col">Basic</th>         <th scope="col">Comprehensive</th>      </tr>   </thead>   <tbody>      <tr>        <td>Medical</td>        <td><span><?php the_field('basic_medical') ?></span><i class="fas fa-check"></i></td>        <td><span><?php the_field('comp_medical') ?></span><i class="fas fa-check"></i></td>     </tr>     <tr>        <td>Cancellation</td>        <td><span><?php the_field('basic_cancellation') ?></span><i class="fas fa-check"></i></td>        <td><span><?php the_field('comp_cancellation') ?></span><i class="fas fa-check"></i></td>     </tr>   </tbody></table><script>$('#insurance tr').filter(function() {    return $.trim($(this).text()) === '';}).hide(); // $('#insurance > tbody  > tr').has('td:empty').hide()// $('#insurance > tbody  > tr').each(function () {//    if ($(this).find('td').is(':empty')) {//        $(this).hide();//    }// });</script>我也嘗試如下。但他們都沒有工作。<?php      $basic = the_field('basic_medical');     $comp =the_field('comp_medical');   if (empty($basic) && empty($comp))        {            echo "<td style=/"display:none;/"><i class="fas fa-check"></i><span><?php the_field('basic_medical') ?> </span></td>";            echo "<td style=/"display:none;/"><i class="fas fa-check"></i><span><?php the_field('comp_medical') ?></span></td>";        }?>我可以知道我哪里出了問題嗎?太感謝了。
查看完整描述

1 回答

?
慕的地6264312

TA貢獻(xiàn)1817條經(jīng)驗(yàn) 獲得超6個(gè)贊

<tr>如果字段為空,則無需打印整個(gè)元素。例如,


<?php


$basic_medical = the_field('basic_medical');

$comp_medical = the_field('comp_medical');


?>


<tbody>

    <?php if(!empty($basic_medical) && !empty($comp_medical)): ?>

       <tr>

           <td>Medical</td>

           <td><span><?php the_field('basic_medical')?></span><i class="fas fa-check"></i></td>

           <td><span><?php the_field('comp_medical')?></span><i class="fas fa-check"></i></td>

       </tr>

    <?php endif; ?>


   ...

   ...


    <tr>

       <td>Cancellation</td>

       <td><span><?php the_field('basic_cancellation')?></span><i class="fas fa-check"></i></td>

       <td><span><?php the_field('comp_cancellation')?></span><i class="fas fa-check"></i></td>

    </tr>

</tbody>


查看完整回答
反對(duì) 回復(fù) 2023-07-08
  • 1 回答
  • 0 關(guān)注
  • 114 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)