爲什麼此鏈接不起作用?jquery.min.js加載資源失敗
//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>
錯誤例如:
開始是您的html頁面坐在一個框架?它位於HTTP或HTTPs端口上嗎?如果它在一個框架上,它不會讓你加載跨域腳本。 – 2013-03-11 16:01:48
@FedericoGiust您可以從不同的來源加載腳本。這就是爲什麼我們有JSONP。 – Antony 2013-03-11 16:03:25