P4 parseFloat

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>parseFloat</title>
<style type="text/css"></style>
</head<body>
<div class="parent">parent
    <div class="child">child</div>
</div>
<script>
alert(parseFloat("  123+"));//忽略空格
 alert(parseFloat("  a123+"));//返回NaN
 alert(isNaN(parseFloat("  a123+")));//isNaN函数验证结果是不是NaN
</script>
</body>
</html>


你可能感兴趣的:(P4 parseFloat)