JavaScript中toString()方法的使用详解
程序员文章站
2023-11-06 13:11:52
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})
推荐阅读
-
PHP中Date()时间日期函数的使用方法小结
-
详解C#中通过委托来实现回调函数功能的方法
-
PHP中include与require使用方法区别详解
-
Vue.js 中的 $watch使用方法
-
MySQL中datetime和timestamp的区别及使用详解
-
SqlServer2005中使用row_number()在一个查询中删除重复记录的方法
-
Kotlin之在Gradle中无参(no-arg)编译器插件的使用详解
-
Centos 6中编译配置httpd2.4的多种方法详解
-
Python使用循环神经网络解决文本分类问题的方法详解
-
vuex2中使用mapGetters/mapActions报错的解决方法