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

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

如果未指定自定義字段,我想隱藏 <div> 部分“softdown”

如果未指定自定義字段,我想隱藏 <div> 部分“softdown”

largeQ 2024-01-18 09:49:52
如果未選擇自定義字段或自定義字段為空,我想隱藏 Div 部分!<div class="softdown">  <span class="postdownlink">    <i class="fa fa-download" aria-hidden="true"></i>    <?php echo get_post_meta($post->ID, 'postdownlink', true); ?>  </span></div>
查看完整描述

2 回答

?
有只小跳蛙

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

在 PHP 中,您可以使用名為 的函數(shù)檢查變量是否為空empty。所以,你可以這樣做:


<?php if(!empty($iamempty)){ ?>


<h1>I won't be shown</h1>


<? } ?>

因此,為了將其實(shí)現(xiàn)到代碼中,您可以執(zhí)行以下操作。


<?php if(!empty(get_post_meta($post->ID, 'postdownlink', true))){ ?>


<div class="softdown">

  <span class="postdownlink">

    <i class="fa fa-download" aria-hidden="true"></i>

    <?php echo get_post_meta($post->ID, 'postdownlink', true); ?>

  </span>

</div>


<? } ?>

如果返回的值不為空,上面的代碼將僅顯示 div(標(biāo)簽之間的 HTML 內(nèi)容PHP) 。get_post_meta


查看完整回答
反對(duì) 回復(fù) 2024-01-18
?
侃侃無(wú)極

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

如果需要實(shí)時(shí)完成,可以這樣做:


可以將其添加到 JS 文件的頂部:


    var inputChange = function (){

        ($('input#photo').val().length === 0) { 

               // Hide the element  On keyup check the value of the input if length is 0 meaning empty hide the div otherwise show.

               $('div.sofdown').hide(); // Using hide()

               //Or using fadeOut();

               $('div.sofdown').fadeOut(1000);

            }

    }

//Initiate to hide the div if there is no text in input.

inputChange();

之后初始狀態(tài)將是hidden


這應(yīng)該添加到JS文件的末尾


$('input#photo').keyup(function() { 

    //Call function

    inputChange();

}


查看完整回答
反對(duì) 回復(fù) 2024-01-18
  • 2 回答
  • 0 關(guān)注
  • 183 瀏覽
慕課專欄
更多

添加回答

舉報(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)