标签: ajax
我试图找到每个以文本开头的data-id,但我得到的只是Uncaught TypeError: b.apply is not a function
data-id
Uncaught TypeError: b.apply is not a function
$(this).closest('.row').each('input[data-id^="sometext_"]', function() { })
已解决
借助jquery selectors和this post
$(this).closest('.row').find('*[data-id^="sometext_"]').each(function() {