导致“未捕获的SyntaxError:意外的标识符”的原因是什么?

时间:2015-11-08 10:40:48

标签: javascript

在以下代码中,导致Uncaught SyntaxError: Unexpected identifier的原因是什么? 当我移动LeakMemory& function在单独的行Uncaught SyntaxError: Unexpected identifier上开始显示在function

的行上
<html>
        <head>
            <script type="text/javascript">
                function
                    LeakMemory
                    ()
                    {
                        
                    }
            </script>
        </head>
        <body>
            <input type="button" value="Memory Leaking Insert" onclick="LeakMemory()" />
        </body>
    </html>

1 个答案:

答案 0 :(得分:1)

也许你有一些奇怪的隐藏角色,当你复制&amp ;;时会被Stack Overflow剥离。粘贴代码?因为复制粘贴代码对我有用。