我正在尝试将一些 javascript 与服务器端变量结合起来。
在这里,我试图用实际的小于号替换“<”号:
@{
string age = '<1'; // assume I got it from the QueryString
<text>$('#select1').val('@age'.replace('<','<'));</text> // and when the parser sees the '<' symbol it thinks I'm trying to close the <text> tage
}
有什么方法可以转义/忽略该符号?