我使用var decimal = parseFloat((343993110.92)).toFixed(10);
函数将2位小数转换为10位小数。转换结果是错误的。
我的代码是:
decimal = 343993110.9200000167
Google Chrome中的结果是:
343993110.9200000000
在Internet Explorer中,转换结果是正确的。
问题:如何在Google Chrome中获得$("#text1").datepicker({
autoclose: true
}).on('changeDate', function (selected) {
var minDate = new Date('2017-12-01');
$('#text1').datepicker('setStartDate', minDate);
});
的预期结果?