JSFiddle.net 我使用这个正确吗?
我将此代码放入 www.jsfiddle.net 上的 JavaScript 框中并点击“运行”,但什么也没发生。当我在 Firebug 中测试它时它工作正常,所以为什么不使用 jsfiddle.net 我是否错误地使用了 jsfiddle.net?
String.prototype.reverse = function() {
return Array.prototype.reverse.apply(this.split('')).join('');
}
"box".reverse();
在这里我想保存一个小提琴。我点击运行,它不起作用。
I put this code in the JavaScript box on www.jsfiddle.net and hit "run," but nothing happened. It works fine when I test it in Firebug, so why not jsfiddle.net Am I using jsfiddle.net incorrectly?
String.prototype.reverse = function() {
return Array.prototype.reverse.apply(this.split('')).join('');
}
"box".reverse();
Here I'm trying to save a fiddle. I click run and it doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
好吧,试试
alert("box".reverse())
;您的代码确实工作了,没有任何东西可以显示它。请参阅这个小提琴Well, try
alert("box".reverse())
; Your code did work, there was nothing to show it. See this fiddle对我来说效果很好: http://jsfiddle.net/jomanlk/Vp5SF/
你可能没有在你的字符串周围放置一个警报。由于现在您的方法仅返回字符串,因此您没有任何迹象表明发生了任何事情。
Works fine for me : http://jsfiddle.net/jomanlk/Vp5SF/
You probably didn't put an alert around your string. Since right now your method only returns the string so you don't have any indication that anything is happening.
好吧,你必须创建一些输出,不是吗?
jsfiddle 不是 JavaScript 控制台。将输出附加到 DOM 或将其打印到浏览器的控制台。
jsfiddle 可让您使用 HTML、JavaScript 和 CSS 即时创建网站,仅此而已。如果您将上面的代码放在一个基本的 HTML 文件中并使用浏览器打开它,您也不会看到任何输出。
阅读文档可能会有所帮助。
Well, you have to create some output, don't you?
jsfiddle is not a JavaScript console. Either append the output do the DOM or print it to the browser's console.
jsfiddle lets you create a website with HTML, JavaScript and CSS on the fly, but nothing more. If you put your code above in a basic HTML file and open it with your browser, you would not see any output either.
It might be helpful to read the documentation.
由于对 JS 有点陌生,我对 JSFiddle 有相同的想法...
这是一个更适合该 IMO 的工具... jsbin.com (我冒昧地将您的代码放在上面的示例中)。
好处是你可以在 jsbin 中使用控制台:)。
Being a bit green with JS, I had the same notion about JSFiddle ...
Here's a tool that suits a bit better for that IMO ... jsbin.com (I took the liberty of putting your code in the above example).
The benefit is that you can use console in jsbin :).