我在表格中有某些元素,其中包含id' searchForm'。我需要找到所有类的结尾为" fromDate"所以我可以执行一些操作,如验证。
这是一个示例元素
<input type="text" class="FRANCHISEE_openingDatefromDate" name="FRANCHISEE_openingDateFrom" size="17">
<script>
$('[class^=fromDate]').each(function(index, value){
console.log($(this).attr('id'));
});
</script>
我想要这样的事情: - 但它没有进入每个循环,有人可以指出错误或请提供正确的方法/解决方案。
答案 0 :(得分:3)
答案 1 :(得分:1)
您需要使用Attribute Ends With Selector [name$="value"]
$('[class$="fromDate"]').each(function(index, value){
console.log($(this).attr('id'));
});
答案 2 :(得分:0)
$("put your certain element").each(function(){
var currentId=$(this).attr("id");
if( currentId.indexOf('fromDate') >= 0){
// perform action to $(this) element
}
});