HTML-encoding lost when attribute read from input field

前端 未结 25 3914
时光说笑
时光说笑 2020-11-21 04:04

I’m using JavaScript to pull a value out from a hidden field and display it in a textbox. The value in the hidden field is encoded.

For example,



        
25条回答
  •  醉梦人生
    2020-11-21 04:42

    I ran into some issues with backslash in my Domain\User string.

    I added this to the other escapes from Anentropic's answer

    .replace(/\\/g, '\')
    

    Which I found here: How to escape backslash in JavaScript?

提交回复
热议问题