小编典典

JavaScript 错误(Uncaught SyntaxError: Unexpected end of input)

all

我有一些适用于 FireFox 但不适用于 Chrome 或 IE 的 JavaScript 代码。

在 Chrome JS 控制台中,我收到以下错误:

“未捕获的语法错误:输入意外结束”。

我使用的 JavaScript 代码是:

<script>
 $(function() {
 $("#mewlyDiagnosed").hover(function() {
    $("#mewlyDiagnosed").animate({'height': '237px', 'top': "-75px"});
 }, function() {
    $("#mewlyDiagnosed").animate({'height': '162px', 'top': "0px"});
 });
</script>

它说错误在最后一行是});


阅读 79

收藏
2022-05-30

共1个答案

小编典典

添加第二个});.

正确缩进后,您的代码将显示为

$(function() {
    $("#mewlyDiagnosed").hover(function() {
        $("#mewlyDiagnosed").animate({'height': '237px', 'top': "-75px"});
    }, function() {
        $("#mewlyDiagnosed").animate({'height': '162px', 'top': "0px"});
    });
MISSING!

你从来没有关闭过外部$(function() {

2022-05-30