有什么解决方案吗?
这是行不通的
$("#spanfile").html(@Html.ResourceScriptString("error","please.choose.file"));
在哪里
public static string ResourceScriptString(this HtmlHelper html, string type, string key)
{
return HttpUtility.JavaScriptStringEncode(ResourceDBManager.CachedObject.getValue(type, key), true);
}
我确实想写得很好,因为这是有效的,但在 VS 中有 javascript 解析错误
$("#spanfile").html("@Html.ResourceScriptString("error","please.choose.file")");
在哪里
public static string ResourceScriptString(this HtmlHelper html, string type, string key)
{
return HttpUtility.JavaScriptStringEncode(ResourceDBManager.CachedObject.getValue(type, key), false);
}