Js 刪掉全部的html標籤

有的時候在首頁顯示的時候,列表裏面只須要字符串,不須要標籤,那麼就須要刪掉html標籤。html /** * 刪掉全部的html標籤 * @param html * @returns {XML|void|string} */ common.removeAllHtml = function (html) { return html.replace(/<[^>]+>/g, ''); };
相關文章
相關標籤/搜索