由于某种原因,Dreamweaver 不允许我关闭我的 jQuery,这似乎是一个语法错误。
这个概念是有一系列具有唯一 id 的按钮,即。#apr for april 每次将 html 文件加载到 div 中(称为 gigs)。
我试过移动东西,添加和删除;
's 和});
's 但似乎找不到解决方案
到目前为止,这是我的代码;
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(document).ready(function(){;
$("#apr").click(function(){
$("#gigs").load('gigs/april13.html');
$("#may").click(function(){
$("#gigs").load('gigs/may13.html');
$("#jun").click(function(){
$("#gigs").load('gigs/may13.html');
$("#jul").click(function(){
$("#gigs").load('gigs/may13.html');
$("#aug").click(function(){
$("#gigs").load('gigs/may13.html');
$("#sep").click(function(){
$("#gigs").load('gigs/may13.html');
$("#oct").click(function(){
$("#gigs").load('gigs/may13.html');
$("#nov").click(function(){
$("#gigs").load('gigs/may13.html');
$("#dec").click(function(){
$("#gigs").load('gigs/may13.html');
});
});
});
</script>
在我关闭脚本标记之前,错误似乎总是落在最后一行。所有输入将不胜感激,因为我是 jQuery 的新手
编辑:所有链接都可以,因为我还没有在今年剩下的时间里创建 html 文件:)