Print Var in JsFiddle

2022-08-30 01:18:37

我如何从我的JavaScript将一些东西打印到JsFiddle中的结果屏幕。我不能使用,它不允许它,也不是。document.write()print

我应该使用什么?


答案 1

为了能够在JSFiddle中查看输出,请转到左侧面板上的外部资源,并为Firebug添加以下链接:console.log()

https://getfirebug.com/firebug-lite-debug.js

Example of the result after adding firebug-lite-debug.js


答案 2

我有一个用于此目的的模板;这是我使用的代码:

断续器

<pre id="output"></pre>

JavaScript

function out()
{
    var args = Array.prototype.slice.call(arguments, 0);
    document.getElementById('output').innerHTML += args.join(" ") + "\n";
}

示例使用(JavaScript)

out("Hello world!");
out("Your lottery numbers are:", Math.random(), 999, Math.PI);
out("Today is", new Date());