我开始记录我正在制作的网站作为实验。它在括号中的实时预览中运行良好,但后来我保存了文件,现在没有jQuery工作。我认为这是我的代码,它也可能是Brackets的东西,因为它只发生一次我保存。这是我的代码:
>=

$(document).ready(function() {
var notes = [];
$("#newNoteWrapper").hide();
$(".text").focus(function() {
$(this).stop
$(this).animate({
marginLeft: "+=3%"
});
});
$(".text").blur(function() {
$(this).stop
$(this).animate({
marginLeft: "-=3%"
});
});
$(".button").hover(function() {
$(this).stop();
$(this).animate({
backgroundColor: "#108cb1"
}, 200);
}, function() {
$(this).stop()
$(this).animate({
backgroundColor: "#2DBEEB"
}, 200);
});
$("#newNoteButton").click(function() {
newNote(true);
});
$("#doneButton").click(function() {
newNote(false);
});
});
var newNote = function(enter) {
if enter {
$("#newNoteWrapper").show();
} else {
$("#newNoteWrapper").hide();
notes.push({
title: $("#noteTitle").val(),
body: $("#noteBody").val(),
});
}
}

html,
body {
padding: 0;
margin: 0;
border: 0;
background-color: #FFFFFF;
font-family: sans-serif;
}
.button {
padding: 15px 25px;
border: none;
font-size: 25px;
margin-bottom: 10px;
background-color: #2DBEEB;
color: #FFFFFF;
outline: none;
}
.text {
border: none;
outline: none;
width: 92%;
border-left: 10px solid #2DBEEB;
resize: vertical;
background-color: #FFFFFF;
}
#newNoteButton {
margin: 10px;
}
#newNoteWrapper {
z-index: 2;
position: absolute;
height: 100%;
width: 100%;
background-color: #FFFFFF;
top: 0%;
}
#newNote {
background-color: #2DBEEB;
color: #FFFFFF;
font-size: 30px;
padding: 10px;
text-align: center;
}
#noteTitle {
font-size: 25px;
height: 50px;
margin: 10px 0px 10px 0px;
}
#noteBody {
font-size: 12pt;
height: 500px;
margin: 0px 0px 10px 0px;
}
#doneButton {
left: 0;
position: absolute;
margin-left: 10px;
}

这有什么问题或者我应该尝试不同的编辑器吗?
答案 0 :(得分:0)
你必须编辑
的后续内容在HTML中
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/jquery.color-animation/1/mainfile"></script>
在JS中
var newNote = function(enter) {
if (enter) {
$("#newNoteWrapper").show();
} else {
$("#newNoteWrapper").hide();
notes.push({
title: $("#noteTitle").val(),
body: $("#noteBody").val(),
});
}
}