9

为什么这个链接不起作用?

//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta name="Description" content=" [wstaw tu opis strony] ">
    <meta name="Keywords" content=" [wstaw tu slowa kluczowe] ">
    <meta name="Author" content=" [dane autora] ">
    <title>[tytuł strony] </title>
    <link rel="stylesheet" href="style.css" type="text/css">
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $(".animat_kon").click(function () {
                $(".animat_text").slideToggle("slow");
            });
        });
    </script>
</head>

错误示例: 在此处输入图像描述

4

4 回答 4

16
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

你没有包括 http://

每当您直接从服务器下载时,请使用http://

于 2013-03-11T16:01:56.720 回答
9

改变

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

进入

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

你错过了http:. 您可以跳过http:让您的浏览器自动在 HTTPS 和 HTTP 之间进行选择。但是在您的情况下,调试工具似乎不理解这种语法。

在此处查找更多信息:我可以将所有 http:// 链接更改为 // 吗?

于 2013-03-11T16:01:02.723 回答
2

链接必须以http://

于 2013-03-11T16:01:31.337 回答
0

请将您的脚本 src 更改为:

    <link rel="stylesheet" href="style.css" type="text/css"> 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">

脚本 src 应该以http://

于 2017-12-29T09:58:55.407 回答