operation with all inputs, without type="checkbox"
I want to do some operation with input elements in td. I used for this:
开发者_运维问答 var inputElements = $('td > input', row);
inputElements.each(function () {
//some operation
});
How can I except checkboxes?
Get all inputs in each cell, except checkboxes.
var inputElements = $('td > input:not(:checkbox)', row);
精彩评论