gpt4 book ai didi

javascript - 未捕获的语法错误 : Invalid or unexpected token (​ code getting included in script file)

转载 作者:行者123 更新时间:2023-11-28 17:36:49 24 4
gpt4 key购买 nike

我编写了一个非常简单的index.html 文件,其中包含脚本和样式

    <!DOCTYPE html>
<html>

<head>
<title>Image Gallery</title>
<meta name="viewport" content="width=device-width">
<link rel="icon" href="images/favicon.ico" type="image/gif" sizes="16x16">
<link rel="stylesheet" type="text/css" href="css/mediaQuery.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>

<body>
<script src="js/searchComponent.js"></script>
<script src="js/service.js"></script>
</body>

</html>

searchComponent.js:

   function Search() {​

}
Search.prototype.fnInitialiseSearchComponent = function() {
var header = document.createElement("div");
header.class = 'header';
$('body').get(0).appendChild(header);
header.innerHTML = '<input type="text" name="search" id="search-text" placeholder="search images">';
}

当尝试运行应用程序时,unicode 会从某处附加并引发错误

enter image description here

如有任何帮助,我们将不胜感激。

最佳答案

您的代码中有一个额外的字符。将其删除并重试。如果您复制代码并粘贴到 jsfiddle 中,您可以看到这一点

enter image description here

关于javascript - 未捕获的语法错误 : Invalid or unexpected token (​ code getting included in script file),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48975853/

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