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">

TA貢獻(xiàn)1966條經(jīng)驗(yàn) 獲得超4個(gè)贊
按照@AlwaysHelping 的建議使用filter
:
$('input[name^="pref"]').filter('[name*="location"]')
或者匹配結(jié)尾部分的名稱屬性,雖然有點(diǎn)老套。
$('input[name$="[location][]"]')
添加回答
舉報(bào)