javascript去掉a標籤的方法:先找到對應的js程式碼部分;然後透過「str.replace(/()|()/g, '') ;」方法去掉a標籤即可。
本文操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。
javascript怎麼去掉a標籤?
特定問題:
js 去a標籤留內容
怎麼用正規去除a標籤,只留下內容http:/ /git.oschina.net
將a標籤部分替換為空的方式,不是直接取a標籤的內容,因為有很多這樣的程式碼,而且還有其它程式碼要留在原地
<a href="http://git.oschina.net/" style="box-sizing: border-box; color: rgb(51, 51, 51); text-decoration: none; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1); -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1); max-width: 100%; transparent;"><span data-wiz-span="data-wiz-span" style="box-sizing: border-box; max-width: 100%; font-size: 14pt;">http://git.oschina.net</span></a>
實作方法:
(<\/?a.*?>)|(<\/?span.*?>)
也就是:
str.replace(/(<\/?a.*?>)|(<\/?span.*?>)/g, '');
執行結果
【推薦學習: javascript高階教學】
以上是javascript怎麼去掉a標籤的詳細內容。更多資訊請關注PHP中文網其他相關文章!