gpt4 book ai didi

javascript - 输入意外结束

转载 作者:行者123 更新时间:2023-11-28 00:55:59 26 4
gpt4 key购买 nike

我添加到 WordPress footer.php 的 JavaScript 部分存在一些问题:

<script>
jQuery('.showPosts').on('click', function() {
if (jQuery(this).hasClass('hidePosts')) {
jQuery(this).children('div').hide();
jQuery(this).removeClass('hidePosts');
jQuery(this).children('.greekCross').html('&#10010;');
} else {
jQuery(this).children('div').show();
jQuery(this).addClass('hidePosts');
jQuery(this).children('.greekCross').html('&#160;&#10145;');
}
});
jQuery('.search-field').attr('placeholder','TYPE IN SEARCH TAGS...');
jQuery('.videoText').remove();
jQuery('.ytVideoContainer').addClass('left');
jQuery('.catContainer').addClass('right');
jQuery('.catContainer').addClass('noMarginTop');
var mq = window.matchMedia('(min-width: 767px)');
if (mq.matches) {
// window width is at least 767px
jQuery('.relatedVideoThumb').show();
} else {
jQuery('.postcontentTitle').insertBefore('.catContainer');
jQuery('.postcontent').insertBefore('.catContainer');
jQuery('.relatedVideoThumb').hide();
}
var winWidth = 0;
jQuery(window).resize(function() {
winWidth = jQuery(window).width();
if (winWidth < 768) {
jQuery('.postcontentTitle').insertBefore('.catContainer');
jQuery('.postcontent').insertBefore('.catContainer');
jQuery('.relatedVideoThumb').hide();
} else {
jQuery('.catContainer').insertBefore('.postcontent');
jQuery('.catContainer').insertBefore('.postcontentTitle');
jQuery('.relatedVideoThumb').show();
}
});
jQuery('.site-header .home-link').css('border', '0');
</script>

每次重新加载页面时,我都会在 Google Chrome 控制台中收到以下信息:

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

为了优化目的而进行缩小,我不得不研究 Firefox Firebug 扩展来看看这个意外的输入结束到底在哪里。我收到以下信息:

SyntaxError: missing } in compound statement
); }});jQuery('.site-header .home-link').css('border', '0');
------------------------------------------------------------

我不知道我在哪里做错了,我已经仔细检查过多次,但我无法找到错误,因此非常欢迎任何指导或解决方案。

最佳答案

语法错误:复合语句中缺少 }

此错误消息告诉您添加此时缺少的 }

尝试添加它。

我想您还必须添加 ) 来完成您的 javascript 代码。

关于javascript - 输入意外结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26216939/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com