1. 程式人生 > >正則去掉 html標簽

正則去掉 html標簽

上線 尊敬 log 16px tex console 購物 幫助 體驗

var htmlStr=‘<p class="cjk" style="margin-bottom: 0cm; line-height: 16px;">關於融托優選<font face="Calibri, sans-serif"><span>APP</span></font>正式發布的通知!</p><p class="cjk" style="margin-bottom: 0cm; line-height: 16px;"><br/></p><p class="cjk" style="margin-bottom: 0cm; line-height: 16px;">尊敬的用戶:</p><p class="cjk" style="margin-bottom: 0cm; line-height: 16px;"><br/></p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;">融托優選<font face="Calibri, sans-serif"><span>APP</span></font>於<font face="Calibri, sans-serif"><span>2019</span></font>年<font face="Calibri, sans-serif"><span>1</span></font>月<font face="Calibri, sans-serif"><span>12</span></font>日正式上線發布,歡迎各位下載安裝。</p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;"><br/></p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;">融托優選,是一款綜合類的第三方入住電子商務平臺,集購物、旅遊、娛樂、金融理財於一身,平臺致力於幫用戶排除不好的產品,讓用戶更輕松的選擇商品;平臺會對入住的第三方產品進行審核,符合標準的才允許上線。</p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;"><br/></p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;">秉承著讓用戶選擇商品變輕松的原則,在產品類型、商品質量、用戶體驗等各個環節嚴格把控,力求能夠幫助用戶更便捷的提高生活品質。</p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;"><br/></p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;"><br/></p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;"><span>詳情請咨詢</span><font face="Calibri, sans-serif"><span><span>400-809-1991</span></span></font><span>,網址:</span><font face="Calibri, sans-serif"><span><font color="#0000ff"><u><a href="http://www.xiantaobx.com./"><span>www.xiantaobx.com.</span></a></u></font></span></font></p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;"><br/></p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;"></p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;">融托優選運營團隊</p><p class="cjk" style="margin-bottom: 0cm; text-indent: 0.74cm; line-height: 16px;"><font face="Calibri, sans-serif"><span>2019</span></font>年<font face="Calibri, sans-serif"><span>1</span></font>月<font face="Calibri, sans-serif"><span>12</span></font>日</p><div><br/></div>‘;
            
var stringtemp =htmlStr.replace(/<[^>]+>/g, ""); console.log(htmlStr); console.log(stringtemp);
replace(/<[^>]+>/g, "")

正則去掉 html標簽