我有一個選擇,以下是控制檯輸出。HTML:獲取特殊字符而不會格式化
> select.options[select.selectedIndex]
<option value="49">books & stationary</option>
> select.options[select.selectedIndex].innerHTML;
"books & stationary"
當我使用innerHTML把它格式化值,並取代&
與&
我?我怎樣才能格式化值?
使用'pre'標籤? –
將「&」替換爲「&」?或者你的意思是用「&amp」代替「&」? – Chelseawillrecover
使用'decodeURIComponent(select.options [select.selectedIndex] .innerHTML)' – Prabhuram