当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript constructor属性
The constructor property is a reference to the function that created an object.
constructor属性是所建立对象的函数参考
object.constructor |
In this example we will show how to use the constructor property:
在这个举例中我们将展示如何使用constructor属性:
<script type="text/javascript"> var test=new Array() </script> |
The output of the code above will be:
输出结果为:
This is an Array |
In this example we will show how to use the constructor property:
在这个举例中我们将展示如何使用constructor属性:
<script type="text/javascript"> function employee(name,jobtitle,born) var fred=new employee("Fred Flintstone","Caveman",1970) document.write(fred.constructor) </script> |
The output of the code above will be:
输出结果为:
function employee(name, jobtitle, born) |
constructor - example 1
In this example we will show how to use the constructor property.
在这个举例中我们将展示如何使用constructor属性
constructor - example 2
In this example we will show how to use the constructor property.
在这个举例中我们将展示如何使用constructor属性