gpt4 book ai didi

Javascript toSource()方法不起作用

转载 作者:行者123 更新时间:2023-12-03 13:44:50 25 4
gpt4 key购买 nike

我收到“对象不支持此属性或方法错误”,有人知道为什么吗?

我确实在 userId、fname、lname、oname、sam、hasAccess 中插入了值

function Employee(id, fname, lname, oname, sam, access) {
this.id = id;
this.fname = fname;
this.lname = lname;
this.oname = oname
this.sam = sam;
this.access = access;
}

var emp = new Employee(userId, fname, lname, oname, sam, hasAccess);

var jsonstuff = emp.toSource(); //Breaking here

虽然这个链接说它可能 http://www.w3schools.com/jsref/jsref_toSource_date.asp

最佳答案

toSource()在 Internet Explorer 或 Safari 中不起作用。它是 Gecko 独有的。见 Implementing Mozilla's toSource() method in Internet Explorer为替代品。

关于Javascript toSource()方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1101584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com