滢芷
2016-11-09 21:23
返回源代码toSorce();
Math对象的原始值valueOf();
toSource()只对firefox有效
toSource():
假设你创建了一个学生对象:
var student=new Student("张三","18");
document.write(student.toSource());
student.toSource()输出:
({name:"张三", age:"18"})
value()方法;
假设你声明了一个Boolean对象:
var b = new Boolean(false);
document.write(b.valueOf());
b.valueOf()输出:
false
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题