jQuery 无法加载

发布于 2024-12-22 21:30:57 字数 1236 浏览 1 评论 0原文

Jquery 无法加载。我是个菜鸟,但坚持不懈地浏览了这个网站并浏览了这个网站。尝试了很多事情,权限设置,在我的系统上重新加载java &各种语法调整,但没有乐趣。快要放弃了。它是这样的...

在我的硬盘上使用jquery,当前版本jquery-1.7.1(也尝试过v1.7.1.min)。

我尝试使用以下插件-scrollTo-1.4.2-min、jqDock.min 和 jqDock.min。 jqDock、jtruncate(当前)& jtruncate.pack。没有工作。我正在使用 IE8 和 Chrome 来检查本地。

调试说...

(jquery-1.7.1.js) 无效字符第 1 行(注意:第 1 行只是 信用信息的开头显示为灰色文本 /*! )
(jquery.jtruncate.js) jQuery 未定义第 1 行(注意:第 1 行是 (function(jQuery){ ) (我的页面名称) 对象不支持此功能 属性或方法代码 0 第 17 行字符 5(注意:第 17 行是 $('').jTruncate({ )

我的头代码,(在元、UTF8 和标题之后)...

$(document).ready(function(){
        $('<div id="statement" />').jTruncate({
            length: 200,
            minTrail: 0,
            moreText: "[more]",
            lessText: "[less]",
            ellipsisText: "(truncated)",
            moreAni: "fast",
            lessAni: 2000
        });
    });

然后是 Dreamweaver 生成的一些 java,(Rollover图像/交换图像胡言乱语),然后是页面特定的CSS(见下文)我还有站点范围的外部CSS表,

    #statement {
        position:absolute;
        left:285px;
        right: 190px;
        top:130px;
        width: 607px;
        height: 321px;
    }

那么

任何人都可以帮忙吗?

Jquery wont load. I'm a noob, but have persisted, trawled this site & tried many things, permission settings, reloading java on my system & various syntax tweaks, but no joy. About to give up. Here's how it stands...

Using jquery on my hard drive, current version jquery-1.7.1 (also tried v1.7.1.min).

I have tried to use the following plugins - scrollTo-1.4.2-min, jqDock.min & jqDock, jtruncate (current) & jtruncate.pack. None work. I'm using IE8 and Chrome to check on local.

Debugging says...

(jquery-1.7.1.js) invalid character Line 1 (NB: line 1 is just the
beginning of the credit info greyed out text /*! )
(jquery.jtruncate.js) jQuery is undefined Line 1 (NB: line 1 is
(function(jQuery){ ) (my page name) Object doesnt support this
property or method Code 0 Line 17 Char 5 (NB: line 17 is $('').jTruncate({ )

My head code, (after meta's, UTF8 and title)...

$(document).ready(function(){
        $('<div id="statement" />').jTruncate({
            length: 200,
            minTrail: 0,
            moreText: "[more]",
            lessText: "[less]",
            ellipsisText: "(truncated)",
            moreAni: "fast",
            lessAni: 2000
        });
    });

Then theres some java generated by Dreamweaver, (Rollover image/swap image guff), then page specific CSS (see below) i also have site wide external css sheet.

    #statement {
        position:absolute;
        left:285px;
        right: 190px;
        top:130px;
        width: 607px;
        height: 321px;
    }

Then html body.

Can anyone help? Cress

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

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

发布评论

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

评论(1

葬花如无物 2024-12-29 21:30:57

http://ajax.googleapis.com/ajax/libs /jquery/1.4.2/jquery.min.js

$(document).ready(function(){
        $('body').append('<div id="statement" />');
        $('#statement').css({
            length: 200,
            minTrail: 0,
            moreText: "[more]",
            lessText: "[less]",
            ellipsisText: "(truncated)",
            moreAni: "fast",
            lessAni: 2000
        });
    });

http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js

$(document).ready(function(){
        $('body').append('<div id="statement" />');
        $('#statement').css({
            length: 200,
            minTrail: 0,
            moreText: "[more]",
            lessText: "[less]",
            ellipsisText: "(truncated)",
            moreAni: "fast",
            lessAni: 2000
        });
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文