我想检索我的表中存在的所有行的属性值。我知道如何做到这一点,但开始和结束值是“未定义”。
如何对其应用验证。我尝试了一些代码,但似乎不起作用。
function currentTicketStatus() {
var ids;
$('tbody tr').each(function() {
ids += ((ids == '' && ids !== 'undefined') ? '' : '|') + $(this).attr('title');
});
alert(ids);
}