如何在单次返回中获取多个事件值

时间:2015-07-06 09:56:28

标签: javascript html5

我想在一次回复中获得多个返回值。

$('#Tbl :checkbox:checked').closest('tr').each(function() {

    checkedRows.push(
    $(this).find('td:gt(0)').map(function() {
          return $(this).text(),$(this).find(".inputDate").val(),$(this).find('select').val();
      }).get()
    ); 
});

1 个答案:

答案 0 :(得分:0)

使用下面的对象文字表示法:

return {
   prop1: $(this).text(),
   prop2: $(this).find(".inputDate").val(),
   prop3: $(this).find('select').val()
}