使用 typeof 屬性,可以返回變量的類型如:<script type="text/javascript"> var a = 12; //alert(typeof a); //number a = "asdf"; //alert(typeof a); //string a = true; //alert(typeof a); //boolean a = function() { alert("adfasdf"); }; //alert(typeof a); //function a = document; //alert(typeof a); //object var b; alert(typeof b); //undefined </script>變量a在前面賦值,後面的注釋就是相應的類型
使用 typeof 屬性,可以返回變量的類型
如:
<script type="text/javascript">
var a = 12;
//alert(typeof a); //number
a = "asdf";
//alert(typeof a); //string
a = true;
//alert(typeof a); //boolean
a = function() {
alert("adfasdf");
};
//alert(typeof a); //function
a = document;
//alert(typeof a); //object
var b;
alert(typeof b); //undefined
</script>
變量a在前面賦值,後面的注釋就是相應的類型