文字列から数値にするには

<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
function strToNum(fObj)
{
n = fObj.num.value;
fObj.result1.value =eval(n);
fObj.result2.value = parseInt(n);
fObj.result3.value = parseFloat(n);
}
// --></script>
</head>
<body>
文字列から数値に変換します。<br><br>
<form>
 値:<input type="text" value="19.69" name="num"><br>
eval:<input type="text" name="result1"><br>
parseInt:<input type="text" name="result2"><br>
parseFloat:<input type="text" name="result3"><br>
<input type="button" value="結果を求める" onClick="strToNum(this.form)">
</form>
</body>
</html>
・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。