作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑 1:
btnDelete.Attributes.Add("onclick", String.Format(@"return DeleteRow('{0}',{1},{2},{3});", e.Row.ClientID, e.Row.RowIndex, DataBinder.Eval(e.Row.DataItem, "Id"), "'" + DataBinder.Eval(e.Row.DataItem, "Name") + "'"));
编辑:
我收到这个错误:
消息:未终止的字符串常量
我正在从后面的代码传递值,我的一些文本有这样的东西:
Foo3, In.c
//javascript
function DeleteRow(rowId, rowIdx, Id, Name) {
var textForMessage = "return confirm('Are you sure you want to delete this record with the name: \n{0} \n{1}');";
//removed code...
return result;
}
最佳答案
什么都不做。逗号在 JavaScript 字符串中没有特殊含义。
关于javascript - 如何在 Javascript 中转义 "comma",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4997634/
我是一名优秀的程序员,十分优秀!