前台过滤方法
function stripHTML(html)
{
return html=html.replace(/<[^>]*>/g, "");
}
//调用stripHTML过滤html标签,然后赋值当前TextBox即可
function returnResult() {
document.getElementById("txtRemarks").value = stripHTML(document.getElementById("txtRemarks").innerHTML);
}