目前,我尝试在我的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>');
对应
如何修复此错误?