Preventing HTML and Script injections in Javascript

后端 未结 7 1796
粉色の甜心
粉色の甜心 2020-12-04 13:12

Assume I have a page with an input box. The user types something into the input box and hits a button. The button triggers a function that picks up the value typed into the

7条回答
  •  伪装坚强ぢ
    2020-12-04 13:39

    From here

    var string="";
    string=encodeURIComponent(string); // %3Cscript%3E...%3C/script%3
    

提交回复
热议问题