返回到:JavaScript对象:JavaScript String 对象
定义和用法
constructor 属性返回对 String 对象属性创建的函数。
语法
string.constructor
所有主要浏览器都支持 constructor 属性。
实例
返回 String 对象属性创建的函数:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(Web176.com)</title> </head> <body> <script> var txt = "Hello Web176.com!"; document.write(txt.constructor); </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/jsarrtips/2964.html