gpt4 book ai didi

javascript - jquery 语法 : where to put "toFixed"

转载 作者:行者123 更新时间:2023-11-30 13:02:58 25 4
gpt4 key购买 nike

我想舍入跟随 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 语法 : where to put "toFixed",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16716101/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com