1

特定の条件に基づいてセル値を非表示にしたい、たとえばセル値が < 20 であるとします

4

2 に答える 2

0

どうですか..

$('table td').each(function(){
  $this = $(this);
  if(parseFloat($this.text()) < 20) {
    $this.css('visibility', 'hidden');
  }
});
于 2013-08-28T14:13:11.517 に答える