将 JavaScript 字符串变量转换为十进制/金钱

发布于 2024-11-08 18:46:18 字数 132 浏览 0 评论 0原文

我们如何将 JavaScript 字符串变量转换为十进制?

有没有这样的函数:

parseInt(document.getElementById(amtid4).innerHTML)

How can we convert a JavaScript string variable to decimal?

Is there a function such as:

parseInt(document.getElementById(amtid4).innerHTML)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

゛清羽墨安 2024-11-15 18:46:18

是的 -- parseFloat

parseFloat(document.getElementById(amtid4).innerHTML);

对于格式化数字,请使用toFixed

var num = parseFloat(document.getElementById(amtid4).innerHTML).toFixed(2);

num 现在是一个字符串,其数字格式为两位小数。

Yes -- parseFloat.

parseFloat(document.getElementById(amtid4).innerHTML);

For formatting numbers, use toFixed:

var num = parseFloat(document.getElementById(amtid4).innerHTML).toFixed(2);

num is now a string with the number formatted with two decimal places.

疯了 2024-11-15 18:46:18

您还可以使用 Number 构造函数/函数(不需要基数,并且可用于整数和浮点数):

Number('09'); /=> 9
Number('09.0987'); /=> 9.0987

或者像 Andy E 在评论中所说的那样,您可以使用 +用于转换

+'09'; /=> 9
+'09.0987'; /=> 9.0987

You can also use the Number constructor/function (no need for a radix and usable for both integers and floats):

Number('09'); /=> 9
Number('09.0987'); /=> 9.0987

Alternatively like Andy E said in the comments you can use + for conversion

+'09'; /=> 9
+'09.0987'; /=> 9.0987
自找没趣 2024-11-15 18:46:18
var formatter = new Intl.NumberFormat("ru", {
  style: "currency",
  currency: "GBP"
});

alert( formatter.format(1234.5) ); // 1 234,5 £

https://developer.mozilla.org/en/docs/Web /JavaScript/Reference/Global_Objects/NumberFormat

var formatter = new Intl.NumberFormat("ru", {
  style: "currency",
  currency: "GBP"
});

alert( formatter.format(1234.5) ); // 1 234,5 £

https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat

拒绝两难 2024-11-15 18:46:18

这有效:

var num = parseFloat(document.getElementById(amtid4).innerHTML, 10).toFixed(2);

This works:

var num = parseFloat(document.getElementById(amtid4).innerHTML, 10).toFixed(2);
赴月观长安 2024-11-15 18:46:18

一个简单的快捷方法是使用 +x
它保持符号和十进制数完好无损。
另一种选择是使用 parseFloat(x)。
parseFloat(x) 和 +x 之间的区别是对于空字符串 +x 返回 0,而 parseFloat(x) 返回 NaN。

An easy short hand way would be to use +x
It keeps the sign intact as well as the decimal numbers.
The other alternative is to use parseFloat(x).
Difference between parseFloat(x) and +x is for a blank string +x returns 0 where as parseFloat(x) returns NaN.

表情可笑 2024-11-15 18:46:18

依赖 JavaScript 函数来比较和玩弄数字是相当危险的。在 javascript 中 (0.1+0.2 == 0.3) 将由于舍入错误而返回 false。使用 math.js 库。

It is fairly risky to rely on javascript functions to compare and play with numbers. In javascript (0.1+0.2 == 0.3) will return false due to rounding errors. Use the math.js library.

兰花执着 2024-11-15 18:46:18

我做了一个小帮助函数来执行此操作并捕获所有格式错误的数据

const convertToPounds = (str = "", asNumber = false) => {
  let num = Number.parseFloat(str);
  if (isNaN(num) || num < 0) num = 0;
  if (asNumber) return Math.round(num * 1e2) / 1e2
  return num.toFixed(2);
};

演示位于此处

I made a little helper function to do this and catch all malformed data

const convertToPounds = (str = "", asNumber = false) => {
  let num = Number.parseFloat(str);
  if (isNaN(num) || num < 0) num = 0;
  if (asNumber) return Math.round(num * 1e2) / 1e2
  return num.toFixed(2);
};

Demo is here

夜声 2024-11-15 18:46:18

前缀 + 可用于将数字的字符串形式转换为数字(例如“009”到 9),

const myNum = +"009"; // 9

但如果您想要 SUM<,请小心 /code> 将 2 个或多个数字串合并为一个数字。

const myNum = "001" + "009";   // "001009"  (NOT 10)

const myNum = +"001" + +"009"; // 10

或者你可以这样做

const myNum = Number("001") + Number("009"); // 10

Prefix + could be used to convert a string form of a number to a number (say "009" to 9)

const myNum = +"009"; // 9

But be careful if you want to SUM 2 or more number strings into one number.

const myNum = "001" + "009";   // "001009"  (NOT 10)

const myNum = +"001" + +"009"; // 10

Alternatively you can do

const myNum = Number("001") + Number("009"); // 10
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文