我正在使用
MyTableGrid在我的网页中显示类似Excel的控件.
对于表1,第0列,第2行,使用类似“mtgIC1_0,2”的ID引用单元格.
不幸的是,当我尝试使用带有这个id $(“#mtgIC1_0,2”)的jQuery选择器时,它永远不会起作用.
我认为这是因为“,”因为它适用于没有昏迷的页面中的任何其他ID.
解决方法
ID and NAME tokens must begin with a
letter ([A-Za-z]) and may be followed
by any number of letters,digits
([0-9]),hyphens (“-“),underscores
(“_”),colons (“:”),and periods (“.”)
但是,如果你逃避逗号,它仍然可以工作
例如
$('#mtgIC1_0\\,2')