函数调用中的javascript内联注释

时间:2018-09-29 13:21:45

标签: javascript function comments inline

所以我有这份文件:

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    </head>
    <body>
        <script type="text/javascript">
            $(document).ready(function() {
                //executes when HTML-Document is loaded and DOM is ready
                alert("document is ready");
            });

            $(window).on("load", function () {
                //executes when HTML-Document is loaded and DOM is ready
                alert("window is loaded");
            });
        </script>
    </body>
</html>

请注意2个函数调用中的内联注释。

显然这些不起作用,给我一个错误:

SyntaxError: missing } after function body[Weitere Informationen] index:1:297 note: { opened at line 1, column 37

不过,使用多行注释/* */确实可以正常工作。 我假设单行注释不起作用,因为以某种方式将javascript缩小为一行。 某人可以评估情况如何吗? 在哪里可以使用单行注释? 还是在js中使用单行注释通常不是一个好主意吗?

1 个答案:

答案 0 :(得分:1)

因为在将所有内容缩小为仅一行之后,没有注释结束标记的单行注释不起作用。