Escape quotes in JavaScript

前端 未结 13 793
不思量自难忘°
不思量自难忘° 2020-11-22 11:39

I\'m outputting values from a database (it isn\'t really open to public entry, but it is open to entry by a user at the company -- meaning, I\'m not worried about XSS).

13条回答
  •  迷失自我
    2020-11-22 11:50

    You need to escape quotes with double backslashes.

    This fails (produced by PHP's json_encode):

    
    

    This works:

    
    

提交回复
热议问题