1. 程式人生 > >input輸入的html標籤直接顯示

input輸入的html標籤直接顯示

例如在input中直接輸入

<a href="https://www.hao123.com/">測試標題是否可以用html</a>
//資料處理,將 <  和 > 替換
data.replace(/</g,'&lt;').replace(/>/g,'&gt;')
//替換所有標籤
data.replace(/<[^<>]+>/g,'')