首页 > 代码库 > jsp 页面 摘要, 要截取字符串 ,当时 字符串中包含 html标签,截取后无法显示

jsp 页面 摘要, 要截取字符串 ,当时 字符串中包含 html标签,截取后无法显示

如题: 

处理办法: 

1.  使用struts标签 

    <s:property  value ="http://www.mamicode.com/#text.replaceAll(‘<[^>]+>‘,‘‘).substring(0,77)" escape="false"/> 

    过滤掉所有 标签

2. 使用 js  

  

   var div = document.getElementById(‘div‘);

  div.innerHTML = ‘<div>aaa<span>bbb<u>ccc<b>ddd<i>fff</i>‘;   //截取完后的值 

  alert(div.innerHTML);  //<div>aaa<span>bbb<u>ccc<b>ddd<i>fff</i></b></u></span></div>

  dom对象的 innerHTML 有自动补全 标签的功能

  

jsp 页面 摘要, 要截取字符串 ,当时 字符串中包含 html标签,截取后无法显示