主题: 通过insertHtml插入表格遇到1个问题
作者: zhiye, 发布日期: 2009-04-15 09:29:32, 浏览数: 9116

function insertHtml(id, html) {
KE.util.focus(id);
KE.util.selection(id);
KE.util.insertHtml(id, html);
}

上面代码的作用是插入HTML,现在使用中有1个问题
1.
<a href="javascript:insertHtml('list_content', '<table width='800' border='1'><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr></table>');">模板1</a>
运行后它总是报缺少')'的错误

<a href="javascript:insertHtml('list_content', '<table ><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr></table>');">模板1</a>
<a href="javascript:insertHtml('list_content', '<table width=800 border=1><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr></table>');">模板1</a>
运行后 就正常 但是由于我这个插入的模板内容,链接 较多,请问怎么使得 属性 和 链接的" 显示正常

发表新帖 发表回复