扫码一下
查看教程更方便
constructor 属性返回对 RegExp 对象属性创建的函数。
语法如下:
RegExp.constructor
返回创建此对象实例的函数。
所有主流浏览器都支持 constructor 属性。
<html>
<head>
<title>JavaScript RegExp constructor Property</title>
</head>
<body>
<script type = "text/javascript">
var re = new RegExp( "string" );
document.write("re.constructor is:" + re.constructor);
</script>
</body>
</html>
输出结果:
re.constructor is: function RegExp() { [native code] }