比如我的模板代码中有这个:
...................
<td><script language="JavaScript" type="text/javascript" src="/bqinc/index_about_js.js"></script></td>
</tr>
</table>
</body>
</html>
其内容比如是:
document.writeln('<table width="950" height="58" border="0" align="center" cellpadding="0" cellspacing="0" id="__01">');
document.writeln(' <tr>');
document.writeln(' <td width="192" height="58"><img src="/bqimages/001f_14_01.gif" width="192" height="58" alt="bayqu.com" /></td>');
document.writeln(' <td width="758" background="/bqimages/indeximg_007.jpg">2006 某某网 版权所有.</td>');
document.writeln(' </tr>');
document.writeln('</table>');
这时添加模板后错误保存成这样,造成内容重复,注意一下红色部分不应该有的,是自动多出来的。
...................
<td><script language="JavaScript" type="text/javascript" src="/bqinc/index_about_js.js"></script></td>
</tr>
</table>
<table width="950" height="58" border="0" align="center" cellpadding="0" cellspacing="0" id="__01">
<tr>
<td width="192" height="58"><img src="/bqimages/001f_14_01.gif" width="192" height="58" alt="bayqu.com" /></td>
<td width="758" background="/bqimages/indeximg_007.jpg">2006 某某网 版权所有.</td>
</tr>
</table>
</body>
</html>
请问怎么解决????