我正在使用 Razor 语法开发 MVC 3 应用程序。
我正在 cshtml 文件中编写 Jscript.... 我想在 JScript 中使用 @ 但它显示黄色背景。
我想将整数值分配给按钮 ID 怎么做?
这是代码...
success: function (data) {
$("p.p12").append
("<div style=\"background-color:#FAFAFA\";>Recently Added... <br /><a href=\"../../Employee/Details/" + data.OwnerID + "\">" + data.OwnerName + "</a>"
+ data.cmtDateTime + " <span class=\"EmpName\"><button type=\"button\" id = \" @item.Id \"class=\"deleteComment\">Delete</button></span> <br />" + data.msg + "</div>");
document.getElementById('Comment').value = "";
$(".ParentBlock").slideDown("slow");
$(".ParentBlock").attr("DataCommentId",data.Id);
$('.ShowComments').text('Hide Comments');
}
这是图像...
我应该为@符号做什么?