admin管理员组文章数量:1342657
<script>
var tids = {
308: 1,
312: 1,
313: 1,
314: 1
};
</script>
results in "missing } in XML expression with an arrow pointing to the first colon in the JS error console. Isn't this a valid declaration?
<script>
var tids = {
308: 1,
312: 1,
313: 1,
314: 1
};
</script>
results in "missing } in XML expression with an arrow pointing to the first colon in the JS error console. Isn't this a valid declaration?
Share Improve this question asked Jan 11, 2010 at 18:03 user105033user105033 19.6k20 gold badges59 silver badges70 bronze badges 2- 1 Do you have any other JS code or is this it? This by itself on a page works just fine without any errors. – Marek Karbarz Commented Jan 11, 2010 at 18:06
-
Have you tried declaring your script tag's type:
<script type='text/javascript' language='javascript'>
? Might help if your browser is confused for some reason... – Topher Fangio Commented Jan 11, 2010 at 18:10
4 Answers
Reset to default 8First you should fix your <script>
tag to
<script type="text/javascript">
Next, if you want to use numeric indexes, try to declare them as a string:
var tids = {
'308': 1,
'312': 1,
'313': 1,
'314': 1
};
Please note, however, that you will not be able to reference them in object notation (i.e. tids.308
). You could simply use arrays instead of objects:
This isn't an associative array -- it's just a JS object. I believe you need to make the keys strings instead of numeric.
var tids = {
"308": 1,
"312": 1,
"313": 1,
"314": 1
};
More info on associative arrays vs. regular objects.
i guess that the key cannot start with a number. try;
<script>
var tids = {
n308: 1,
n312: 1,
n313: 1,
n314: 1
};
</script>
I have tried in both IE and FF and the code is fine. It should be the error of other codes.
Please use Firefox Web Developer and Firebug to find the source of error.
本文标签: javascript associative array initialization errorStack Overflow
版权声明:本文标题:javascript associative array initialization error? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743703361a2524697.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论