Javascript强制转换

时间:2022-08-11 16:45:56

Javascript强制转换

  Javascript强制转换强制转换一共有五种转换方式,各有各的用处,希望大家在实际的使用中灵活运用,不要死板。

 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script>
// 其他类型转化为布尔型
test=Boolean(0);
test=Boolean(-2);
test=Boolean(NaN);
test=Boolean('');
test=Boolean('0.0');
alert(test);
alert(typeof test);
</script>
<script>
//其他类型转化为字符串
test=String(123);
test=String(123.0);
test=String(123.2);
test=String(true);
alert(test);
</script>
<script>
//其他类型转化为数值型
test=Number('12');
test=Number(true);
test=Number(false);
test=Number('false');
test=Number(undefined);
alert(test);
</script>
<script>
//其他类型化为整型
test=parseInt(123.22);
test=parseInt(NaN);
test=parseInt('123ae');
test=parseInt('123e2,10');
alert(test); // string 以 "0x" 开头,parseInt() 会把 string 的其余部分解析为十六进制的整数。
</script>
</body>
</html>