我已經在分鐘的格式設置的三次時間:秒:毫秒,我需要以加在一起,並獲得總時間..添加行值
例如我用的一個是:0:31.110 + 0:50.490 + 0:32.797 其中= 1:54.397
所以如何做到這一點在JavaScript?
這裏是JS代碼
var sp1 = $('#table tr td:nth-child(2)').text()
var sp2 = $('#table tr td:nth-child(3)').text()
var sp3 = $('#table tr td:nth-child(4)').text()
var1 = sp1 + sp2 + sp3
$('td:nth-child(5)').html(var1);
我不知道從哪裏開始,但我剛剛想出了上面的代碼.. 我需要的輸出爲1:在過去的54.397 td,但是我得到這個例子中顯示的0:31.1100:50.4900:32.797 http://jsfiddle.net/q1kumbea/
以及您希望陣列添加儘可能多的數字,你可以簡單地用分割法打破它和做數學題 – aw04
你需要拆分時間,然後單獨添加每個組件,如t1.split(「:」),t2.split(「:」),t3.split(「:」),然後t1 [0] + t2 [0] + t3 [0 ] ...並在結尾再次加入冒號(:) – atul