I use Number("1,255,558.3652")
to convert this string to number,but the result in console tells me "Nan".
In my html code,I use:
<input id="text_target_value" class="text-right number" type="text" onkeyup="value=value.replace(/[^\d{1,}\.\d{1,}|^\d{1,}\%|\d{1,}]/g,'')"/>
to format the input,when I use:
var page_goal_val=Number($("#text_target_value").val());
to get the value,it said "Nan",so what should I do?