在我的程序中有一个变量名“quotes”,它从 API 调用中获取输入字符串。
当字符串中有单引号时,程序不起作用。
<script>
var quotes = "Empty"
if(user.quotes)
quotes = user.quotes; // get the string to 'quotes' variable
</script>
谁能告诉我如何解决这个问题?
在我的程序中有一个变量名“quotes”,它从 API 调用中获取输入字符串。
当字符串中有单引号时,程序不起作用。
<script>
var quotes = "Empty"
if(user.quotes)
quotes = user.quotes; // get the string to 'quotes' variable
</script>
谁能告诉我如何解决这个问题?