我想舍入以下jQuery的结果,但是我不知道将.toFixed()
放在哪里
(function ($) {
$(document).ready(function() {
$('#custom_coverage').keyup(function() {
$('#result').text($('.reads').text() / ($('.amplicons').text() * $('#custom_coverage').val()));
});
});
}(jQuery));
谁能帮忙?
最佳答案
尝试这个
(function ($) {
$(document).ready(function () {
$('#custom_coverage').keyup(function () {
var raw = $('.reads').text() / ($('.amplicons').text() * $('#custom_coverage').val());
var fixed = raw.toFixed(2);
$('#result').text(fixed);
});
});
}(jQuery));
关于javascript - jQuery语法:将“toFixed”放在哪里,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16716101/