找到每个以文本开头的“数据ID”

时间:2019-03-06 06:04:07

标签: ajax

我试图找到每个以文本开头的data-id,但我得到的只是Uncaught TypeError: b.apply is not a function

$(this).closest('.row').each('input[data-id^="sometext_"]', function() {

})

已解决

借助jquery selectorsthis post

$(this).closest('.row').find('*[data-id^="sometext_"]').each(function() {

0 个答案:

没有答案