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

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

使用 JQuery 或 Javascript 從多維 HTML 名稱數(shù)組中選擇二級(jí)鍵

使用 JQuery 或 Javascript 從多維 HTML 名稱數(shù)組中選擇二級(jí)鍵

慕村9548890 2023-03-03 13:13:36
pref[*][location][]如何像使用 jQuery 選擇器或 Javascript一樣選擇所有具有名稱的輸入?我有興趣通過(guò)二級(jí)鍵“位置”獲取它。<input type="text" name="pref[1][term][]" value="no"><input type="text" name="pref[1][term][]" value="no"><input type="text" name="pref[1][location][]" value="get_this"><input type="text" name="pref[1][location][]" value="get_this_too"><input type="text" name="pref[1][other]" value="no"><input type="text" name="pref[2][term][]" value="no"><input type="text" name="pref[2][location][]" value="get_this_too"><input type="text" name="pref[2][location][]" value="get_this_too"><input type="text" name="pref[3][term][]" value="no"><input type="text" name="pref[3][other]" value="no"><input type="text" name="location" value="no">
查看完整描述

2 回答

?
守著星空守著你

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

您可以使用$.each函數(shù)來(lái)獲取inputs您擁有的所有內(nèi)容,然后filter使用它們的屬性將它們?nèi)〕?code>name。

input要通過(guò)二級(jí)密鑰獲取所有內(nèi)容,[location]我們可以使用includes方法,這樣我們將只獲取containing輸入key。

現(xiàn)場(chǎng)工作演示:


$('input').each(function(i, el) {

  if ($(el).attr('name').includes('[location]')) {

    console.log(el)

  }

})

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<input type="text" name="pref[1][term][]" value="no">

<input type="text" name="pref[1][term][]" value="no">

<input type="text" name="pref[1][location][]" value="get_this">

<input type="text" name="pref[1][location][]" value="get_this_too">

<input type="text" name="pref[1][other]" value="no">

<input type="text" name="pref[2][term][]" value="no">

<input type="text" name="pref[2][location][]" value="get_this_too">

<input type="text" name="pref[2][location][]" value="get_this_too">

<input type="text" name="pref[3][term][]" value="no">

<input type="text" name="pref[3][other]" value="no">

<input type="text" name="location" value="no">


查看完整回答
反對(duì) 回復(fù) 2023-03-03
?
慕標(biāo)5832272

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

按照@AlwaysHelping 的建議使用filter

$('input[name^="pref"]').filter('[name*="location"]')

或者匹配結(jié)尾部分的名稱屬性,雖然有點(diǎn)老套。

$('input[name$="[location][]"]')


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

添加回答

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