function delHtmlTag(str){ return str.replace(/<[^>]+>/g,"");//去掉所有的html标记}
$(".positionDesc").each(function (i) {var positionDesc=$(this).text();$(this).text(delHtmlTag(positionDesc)); });