Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在萤火虫中报告了该错误:
data = data + "&network=" + rowdata.network + "&10xx=" + rowdata.10xx;
谁能帮我解决这个错误。
rowdata.10xx是无效的 JS。属性的点符号访问使用标识符,标识符不能以数字开头。使用不同的属性名称:
rowdata.10xx
rowdata.x10xx
或使用方括号表示法,它允许您使用字符串而不是标识符:
rowdata['10xx']