System.ArgumentOutOfRangeException
HResult=0x80131502
Message=索引超出范围。必须为非负值并小于集合大小。
Arg_ParamName_Name
Source=mscorlib
StackTrace:
at System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
at System.Collections.Generic.List`1.get_Item(Int32 index)
此异常最初是在此调用堆栈中引发的:
[外部代码]
CYQ.Data.Table.MDataRowCollection.this[int].get(int) (位于 MDataRowCollection.cs 中)
Aries.Controllers.DefaultController.GeneralFlowCode() (位于 DefaultController.cs 中)
最近在写js然后调试的时候报这个错误,有时候点击添加按钮就会直接报错。查看浏览器中错误提示信息,显示找不到“nodename”,经过检查后发现,是写的jQuery格式的查询,里面的id选择器的id名没有和元素id名对应上,掉了一个下划线,在网上搜索查到,如果双引号、单引号没打对也会出现这种情况。