我在Resx文件中遇到单引号(')问题,而我直接在JavaScript中调用它们,例如:
var hello = '<%=SomeTextFromResxWithSingleQuote%>';
在这种情况下,所有JavaScript都混淆了,并出现了许多错误:( 有什么快速解决方案来解决这个 谢谢:))
答案 0 :(得分:0)
解决。
string fixedText = ReplaceSingleQuote("L'df'ds");
public static ReplaceSingleQuote(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
return text.Replace("'", "'");
}
答案 1 :(得分:0)
您可以使用双引号跳过此问题,例如:
var hello = "<%=SomeTextFromResxWithSingleQuote%>";
JavaScript允许您使用双引号或单引号来分隔文本。