EL表达式中含有html 用js调用直接输出的困惑
HTML code
<a href="#" onclick="modify('${news.id}','${news.title}','${news.content}',
'${news.writeDate}','${news.viewTotal}','${news.user.id}','${news.state}',
'${news.attachment}');">修改</a>
这是我的源码 其中news.content中含有html代码 这样子用的话 直接就把html代码中的格式输出出来了 请问大家遇到过这样的问题吗
------解决方案--------------------加入参数escapeXml="false"或者escapeXml="true" 来控制是否对输出内容中的html字符进行转义
------解决方案--------------------那你就不要把这个放在<a>上啊...
用个<div id="content" style="display:none">${news.content}</div>
onclick时,从这个div中取内容不就完了
------解决方案--------------------對,這樣html元素不會被解析。你可以用轉嗎的方式,比如