标签:html标签 cer ice ips htm html content class 内容
<td class="ellipsis" title="${item.Name}">${item.Name}</td> @*一般赋值*@
<td class="ellipsis" title="$${item.Content}">$${item.Content}</td> @*赋值内容含有html标签时,使用$$ 直接显示文本内容,不会被浏览器转义*@
即:当
item.Content = ‘<p>123</p>‘;
${item.Content} => <p>123</p>
$${item.Content} => <p>123</p>
标签:html标签 cer ice ips htm html content class 内容
原文地址:https://www.cnblogs.com/withwjy/p/12427505.html