JSFiddle.net 我使用这个正确吗?

发布于 2024-10-24 23:07:12 字数 425 浏览 3 评论 0原文

我将此代码放入 www.jsfiddle.net 上的 JavaScript 框中并点击“运行”,但什么也没发生。当我在 Firebug 中测试它时它工作正常,所以为什么不使用 jsfiddle.net 我是否错误地使用了 jsfiddle.net?

String.prototype.reverse = function() {
return Array.prototype.reverse.apply(this.split('')).join('');
}

"box".reverse();

在这里我想保存一个小提琴。我点击运行,它不起作用。

http://jsfiddle.net/mjmitche/qnjP3/

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.

http://jsfiddle.net/mjmitche/qnjP3/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

╰つ倒转 2024-10-31 23:07:12

好吧,试试 alert("box".reverse());您的代码确实工作了,没有任何东西可以显示它。请参阅这个小提琴

Well, try alert("box".reverse()); Your code did work, there was nothing to show it. See this fiddle

殊姿 2024-10-31 23:07:12

对我来说效果很好: 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.

北方的巷 2024-10-31 23:07:12

好吧,你必须创建一些输出,不是吗?

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.

孤云独去闲 2024-10-31 23:07:12

由于对 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 :).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文