代码如下
var test = function(){
var tpl = "";
with(obj || {}){
tpl = '<!DOCTYPE html>
\n<html>
\n<head>
\n <title>Hello</title>
\n</head>
\n<body>
\n<p>hello everyone</p>
\n</body>
\n</html>';
}
return tpl;
}
console.log(test());
在chrome控制台和用node直接运行报错SyntaxError: Unexpected token ILLEGAL 如何解决这种问题?