我正在使用 Visual Studio 2012 开发 asp.net mvc 4 razor 应用程序当我动态创建“”时出现错误我的代码如下
function CreateDiv()
{
<text>
var DivContent='';
var DivContent="<div>";
</text>
@{
//Some code to set the contents of div
}
<text>
var DivContent="<//div>"; //This line gives me error
</text>
}
请建议