在 jsFiddle 中有效,但在我的网站中无效

发布于 2025-01-06 14:45:57 字数 285 浏览 0 评论 0原文

由于某种原因,我网站上的这个 jQuery 代码可以在 jsFiddle 上运行,但不能在本地运行。代码是一样的。我刚刚复制并粘贴了它。谁能向我解释这是怎么回事?

For some reason this jQuery code I have in my site will work on jsFiddle but not locally. The code is the same. I have just copied and pasted it. Can anyone explain to me what is going on?

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

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

发布评论

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

评论(4

感受沵的脚步 2025-01-13 14:45:57

使用 Chrome 的开发者工具,您会在控制台中收到错误:Uncaught SyntaxError: Unexpected token ILLEGAL

查看代码,您会看到:

$(document).ready(function() {

    $('#workclick').click(function() {
    $("#header").height($("#headwrapper").height());

    });
    $('#workclick').click();

    $('#aboutclick, #contactclick, #introclick').click(function() {
    $("#header").height('0');
    });​ // here
});

某种编码错误...

Using Chrome's developer tools, you get an error in the console: Uncaught SyntaxError: Unexpected token ILLEGAL

Taking a look at the code, you see:

$(document).ready(function() {

    $('#workclick').click(function() {
    $("#header").height($("#headwrapper").height());

    });
    $('#workclick').click();

    $('#aboutclick, #contactclick, #introclick').click(function() {
    $("#header").height('0');
    });​ // here
});

Some kind of encoding error...

冷了相思 2025-01-13 14:45:57

Firebug 抱怨代码(第 562 行)中的 恰好是非法字符。

Firebug is complaining about a ​ in your code (line 562), which happens to be an illegal character.

撩动你心 2025-01-13 14:45:57

我在我的 Jquery 中发现了一个奇怪的隐藏字符。不知道它来自哪里,也不知道为什么它没有出现在我的编辑器中,但我使用了它并且工作正常。感谢大家的帮助!

I found a weird hidden character in my Jquery. Not sure where it came from or why it wasnt showing up in my editor, but I got ride of it and it works fine. Thanks for the help everyone!

变身佩奇 2025-01-13 14:45:57

抱歉我的英语不好,

我有办法复制完整的源代码

步骤

  1. 单击“共享”按钮

    2 复制 2 框共享全屏结果的链接

3 的链接,然后转到该链接(复制链接)。它显示结果

4 然后右键单击,单击视图框架源。

现在您的源代码显示

,然后放置脚本 src 和 css 的确切链接。

现在你的代码可以工作了

Sorry for my bad english

i have idea for copy the full source code

steps

  1. click on the Share button

    2 copy the link of on 2 box Share full screen result

3 then go that link(copy link). it show the result

4 then right click, click the view frame source.

Now your source code show

then put on the exact link of the script src and css.

now your code work

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