两个数字的百分比,并在另一个td中显示最终结果

时间:2017-10-15 07:35:48

标签: javascript jquery

我有一个由tr和tds组成的表,我在第三个td显示售票的百分比。我写的时候我的代码有问题" Mytext"而不是数字和计算错误而且它显示无穷大而不是显示写入百分比。如何定义td是否具有" mytext"而不是数字,设置销售列中最接近的数字而不是该文本,然后计算?例如,如果在可用的列中有Mytext,在售出的列中有5个用文本替换5,然后计算? 这是我的代码:



$('table tbody tr').each(function() {
  var $this = this,
    td2Value = $('td:nth-child(2)', $this).text().trim().split(/\D+/);

  $('span.result', $this).each(function (index, element) {
    let v = $('td:nth-child(1)', $this).text().trim().split(/\D+/);
    $(element).html(Math.round((td2Value[index] * 100 / v[index]) || 0) + '%');
  });
})

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js"></script>
<table border="1">
             <thead>
                <tr>
                  <th> avalable</th>
                  <th> sold</th>
                  <th>  result </th>
                </tr>
            </thead>
<tbody>
<tr>
<td>
Mytext<br>  
10<br/> 
</td>
<td>
5<br/>
2<br/>
</td>
<td>
<span class="result"></span><br/>
<span class="result"></span><br/>
</td>
</tr>
</tbody>
</table>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:3)

删除列中的正则表达式编号,然后检查值是否等于available更改

Mytext
$('table tbody tr').each(function() {
  var $this = this,
    td2Value = $('td:nth-child(2)', $this).text().trim().split(/\D+/);

  $('span.result', $this).each(function (index, element) {
    //change starts here
    let v = $('td:nth-child(1)', $this).text().trim().split(/\r?\n/);
    if(v[index] != null && v[index].trim() == "Mytext")
    {
       v[index] = td2Value[index];
    }
    if(v[index] != null )
    {
      $(element).html(Math.round((td2Value[index] * 100 / v[index]) || 0) + '%');
    }
    //change ends here
  });
})