标签: jquery
有些人可以指导如何选择非读取的文本框,我在下面使用:
count=count+parseInt($(this).find('td').eq(ind-1).find("input:text").not("readonly").val())
答案 0 :(得分:0)
这应该为你做...
$('input[type="text"]:not([readonly])')
有关正在运行的示例,请参阅this fiddle