Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JS に変数がqtyあり、タイプは文字列です。に変更するにはinteger or float?
qty
integer or float
PHP には settype があります。JS でも同じ方法を試してください。それは動作しません。
var qtyInt = parseInt(qty); var qtyFloat = parseFloat(qty);
文字列を float に変換: var myFloat = parseFloat('77.3'); // 77.3
文字列を整数に変換: var myInt = parseInt('14'); // 14