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

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

jquery的find方法能否找多個(gè)div,然后分別添加class

jquery的find方法能否找多個(gè)div,然后分別添加class

翻翻過去那場雪 2018-08-06 13:10:25
現(xiàn)在的代碼是在這樣的    $container.children().last().find('.time').html(data[i].pTime);     $container.children().last().find('.textcon').html(data[i].pText);    if(data[i].pState !== '健康'){       $container.children().last().find('.dot').addClass('error-dot');       $container.children().last().find('.triangle').addClass('error-triangle');       $container.children().last().find('.textcon').addClass('error-textcon');     }`有沒有更加簡便的寫法???同時(shí)find多個(gè)div,然后設(shè)置html或者添加class,我試了下用逗號隔開不行,求指導(dǎo)~。
查看完整描述

1 回答

?
MYYA

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

不知道你是怎么用逗號隔開的。

$container.children().last()    // 可能你是這樣寫的
    .find('.dot','.triangle')    // 應(yīng)該這樣寫
    .find('.dot,.triangle')
    .each(function(v){        // 然后在each里面去寫你的邏輯
    });

然后給你個(gè)建議。

$container.children().last().find('.time').html(data[i].pTime);

這里 $container.children().last() 重復(fù)寫了很多次,這樣是很消耗性能,你應(yīng)該用變量先緩存下來。
然后后續(xù)只需引用該變量即可,這樣寫的代碼都少了。

var $last = $container.children().last();
$last.find('.time').html(data[i].pTime);
$last.find('.textcon').html(data[i].pText);


查看完整回答
反對 回復(fù) 2018-09-23
  • 1 回答
  • 0 關(guān)注
  • 1290 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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