这是:
var obj = {
'city': 'ny',
}
我在ny
但这可以在Chrome和Firefox中运行,但不能在IE6 / 7中运行
这种语法是正确还是错误或推荐?
答案 0 :(得分:0)
如果你只有一个键和值,那么应该没有逗号。If you are separating the Key & Value Pairs with comma then it is called as Object Literals.
var obj = {
'city': 'ny'
}