未捕获的SyntaxError:我的JSF页面中出现意外的标记ILLEGAL

时间:2016-02-26 13:50:55

标签: javascript jsf xhtml

目前,我尝试在我的xhtml页面中执行这个js函数:

<script type="text/javascript">
    function makeLayer(id, L, T, W, H, bgColor, visible, zIndex) {
                console.debug("inside");

                    var toto = new Array();
                    var res2 ="";

                    toto.push('<div id="container"> hello world </div>');
                    res2 = toto.join();
                    console.debug(res2);
                }
            }
    </script>

但在网络控制台中,我看到:Uncaught SyntaxError: Unexpected token ILLEGAL,此错误与toto.push('<div id="container"> hello world </div>');对应

如何修复此错误?

0 个答案:

没有答案