欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

简介JavaScript中Boolean.toSource()方法的使用

程序员文章站 2023-11-06 13:28:28
 javascript boolean.tosource()方法返回表示对象的源代码的字符串。 注意:此方法不会在internet explorer中运行。...

 javascript boolean.tosource()方法返回表示对象的源代码的字符串。

注意:此方法不会在internet explorer中运行。
语法

boolean.tosource()

下面是参数的详细信息:

  •     na

返回值

返回表示对象的源代码的字符串。
例子:

<html>
<head>
<title>javascript tosource() method</title>
</head>
<body>
<script type="text/javascript">
function book(title, publisher, price)
{
  this.title = title;
  this.publisher = publisher;
  this.price = price;
}
var newbook = new book("perl","leo inc",200); 
document.write(newbook.tosource()); 
</script>
</body>
</html>

这将产生以下结果:

({title:"perl", publisher:"leo inc", price:200})