慕桂英4014372
日志只有在您打开开发人员工具之后才可用(F12用来切换它的打开和关闭)。有趣的是,在你打开它之后,你可以关闭它,然后仍然通过控制台日志调用发送到它,当你重新打开它的时候会看到这些。我想那是某种错误,可能会被修复,但我们会看到的。我可能会用这样的方法:function trace(s) {
if ('console' in self && 'log' in console) console.log(s)
// the line below you might want to comment out, so it dies silent
// but nice for seeing when the console is available or not.
else alert(s)}甚至更简单:function trace(s) {
try { console.log(s) } catch (e) { alert(s) }}