开发者

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);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜