<!DOCTYPE html>
<html>
<body>
<script type="text/vbscript">
Dim x
document.write(IsEmpty(x) & "<br>")
x=10
document.write(IsEmpty(x) & "<br>")
x=Empty
document.write(IsEmpty(x) & "<br>")
x=Null
document.write(IsEmpty(x))
</script>
</body>
</html>
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。