解决:出现滚动条背景无法平铺问题
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <style> div { width: 400px; overflow-x: scroll; border: 1px solid #e6e6e6…
547 2021-03-26 去围观解决js计算数字精度问题
function twofloat(v){ return Number((Number(v).toFixed(2)).toString()) //有小数保留,没小数就不用默认显示.00,多位小数就保留2位,同时解决精度问题 } console.log( twofloat(0.3-0.1) ) ------------------------------------------------- con…
975 2021-03-15 去围观