-4
我想要這段代碼能夠改變使用javascript或jquery的數值仍然是2.00而不是2.00лв。 請幫我做了很多嘗試,但未能問:如何搜索有價值的文字和精讀?
<input value="2.00лв." id="price" name="price" size="1" style="height: 22px; width: 80px" type="text">
我想要這段代碼能夠改變使用javascript或jquery的數值仍然是2.00而不是2.00лв。 請幫我做了很多嘗試,但未能問:如何搜索有價值的文字和精讀?
<input value="2.00лв." id="price" name="price" size="1" style="height: 22px; width: 80px" type="text">
可以使用parseFloat()
-function:
var price = $('#price').val(); //get the value from the input
price = parseFloat(price); //convert the value to a float-number
$('#price').val(price); //set the value
參考
'我做了很多嘗試,但failed'發佈他們自己的問題 – 2015-03-19 12:42:28