我如何从我的 JavaScript 在 JsFiddle 的结果屏幕上打印一些东西。我不能使用document.write()
,它不允许,也不允许print
。
我应该使用什么?
我如何从我的 JavaScript 在 JsFiddle 的结果屏幕上打印一些东西。我不能使用document.write()
,它不允许,也不允许print
。
我应该使用什么?
为了能够console.log()
在 JSFiddle 中看到输出,请转到左侧面板上的外部资源并为 Firebug 添加以下链接:
我有一个用于此目的的模板;这是我使用的代码:
<pre id="output"></pre>
function out()
{
var args = Array.prototype.slice.call(arguments, 0);
document.getElementById('output').innerHTML += args.join(" ") + "\n";
}
out("Hello world!");
out("Your lottery numbers are:", Math.random(), 999, Math.PI);
out("Today is", new Date());
可能不会做你做的事,但你可以打字
console.log(string)
它会将字符串打印到浏览器的控制台中。在Chrome推CTRL+ SHIFT+J打开控制台。
你可以这样做--->
http://jsfiddle.net/chY5y/
$('body').append(yourVariable);