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

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

無法調(diào)用模板文字中的函數(shù)

無法調(diào)用模板文字中的函數(shù)

DIEA 2023-03-18 15:02:07
我有一個(gè)業(yè)余問題,為什么我不能在模板文字中調(diào)用這個(gè)函數(shù)。代碼返回未定義,控制臺(tái)中沒有任何錯(cuò)誤。我似乎看不出我做錯(cuò)了什么,我是否缺少返回聲明?function startCountdown(seconds) {  let counter = seconds;  const interval = setInterval(() => {    console.log(counter);    counter--;    if (counter < 0) {      clearInterval(interval);    }  }, 1000);}document.body.innerHTML = `<p>Quick! Click to stop the page from self destructing. You have ${startCountdown(  5)} seconds.</p>`;
查看完整描述

3 回答

?
慕森卡

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

當(dāng)您不從函數(shù)返回任何內(nèi)容時(shí),隱式undefined返回。因此你會(huì)得到Y(jié)ou have undefined seconds.</p>


你必須從你的函數(shù)中返回一個(gè)值。


即使你從你的函數(shù)返回一個(gè)值,你也會(huì)得到你作為參數(shù)傳遞的相同值,因?yàn)閟etInterval本質(zhì)上是異步的,這意味著在時(shí)間間隔開始和結(jié)束時(shí)你的函數(shù)已經(jīng)返回了該值。


function startCountdown(seconds) {

  let counter = seconds;


  const interval = setInterval(() => {

    console.log(counter);

    counter--;


    if (counter < 0) {

      clearInterval(interval);

    }

  }, 1000);


return counter;

}

You have 5 seconds.</p>如果你5作為參數(shù)傳遞給你的函數(shù),你會(huì)得到。


查看完整回答
反對(duì) 回復(fù) 2023-03-18
?
回首憶惘然

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

看看這段代碼:


function startCountdown(seconds) {

    let counter = seconds;


    const interval = setInterval(() => {

        console.log(counter); 

        document.querySelector('#countdown').innerHTML = counter;

        counter--;


        if (counter < 0) {

            clearInterval(interval);

        }

    }, 1000);

}


document.body.innerHTML = `<p>Quick! Click to stop the page from self destructing. You have <span id="countdown">5</span> seconds.</p>`;


startCountdown(5);

它有一個(gè)帶有id. 您可以使用 JS 更新此元素。



查看完整回答
反對(duì) 回復(fù) 2023-03-18
?
繁星點(diǎn)點(diǎn)滴滴

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

您可以提供一個(gè)回調(diào),作為回報(bào)提供秒數(shù):


function startCountdown(sec, cb) {

  const itv = setInterval(() => {

    cb(sec); // Call your Callback, pass sec as argument.

    sec--;

    if (sec < 0) clearInterval(itv);

  }, 1000);

}


// Use your function:

startCountdown(5, (sec) => {

  document.body.innerHTML = `<p>Quick! Click to stop the page from self destructing. You have ${sec} seconds.</p>`;

});


這樣你就可以重用你的startCountdown()代碼而不用硬編碼到它不相關(guān)的東西中。


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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