定义和用法
toSource() 方法返回表示对象源代码的字符串。
语法
object.toSource()
提示和注释
注释:该方法在 Internet Explorer 中无效。
实例
下面的例子向您展示 toSource() 方法的用法:
输出:
({name:"Bill Gates", job:"Engineer", born:1985})
返回表示该数组的源代码的字符串。
例子:
这将产生以下结果:
Returned string is : ["orange", "mango", "banana", "sugar"]
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!