这是我的代码:
<td onclick="openFile('<?php echo htmlentities ($row['name'])?>','
<?php echo htmlentities ($row['content'])?>')">
<a href="#nf" data-toggle="tab"><?php echo $row['name']?></a></td>
因为 $row['content'] 中有一个 endline char:
openFile('哇','哇哇哇
哇 ');
并且当浏览器在同一行中找不到结尾 qoutes 时,它会抛出一个
错误(SyntaxError:未终止的字符串文字 [Break On This Error])。
有什么解决方案吗?