JavaScript undefined 属性
JavaScript基础 2022-06-08 10:43:36小码哥的IT人生shichen
JavaScript undefined 属性
实例
测试变量是否未定义:
var x;
if (typeof x === "undefined") {
txt = "x is undefined";
} else {
txt = "x is defined";
}
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>请单击按钮以测试变量是否未定义。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
var x;
if (typeof x === "undefined") {
txt = "x is undefined";
} else {
txt = "x is defined";
}
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
页面下方提供了更多的 TIY 实例。
定义和用法
undefined
属性表示变量没有被赋值,或者根本没有被声明。
浏览器支持
属性 | Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
undefined | 支持 | 支持 | 支持 | 支持 | 支持 |
技术细节
JavaScript 版本: | ECMAScript 1 |
---|
更多实例
测试未声明的变量是否未定义:
if (typeof y === "undefined") {
txt = "y is undefined";
} else {
txt = "y is defined";
}
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>请单击按钮检查变量 y 是否已定义或未定义。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
if (typeof y === "undefined") {
txt = "y is undefined";
} else {
txt = "y is defined";
}
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html