我正在尝试为 DOM 元素“img”分配属性“itemId”
这是代码
var img = document.createElement('IMG');
window.console.log(itemId);
img.itemId = itemId;
window.console.log(img.itemId);
执行控制台后包含以下消息:
41
http://example.domain/41
其中 example.domain - 是我网站的地址。
此问题出现在 Opera 和 Mozilla 中,但在 Chrome 中此代码工作正常(img.itemId == 41)。示例:http: //jsfiddle.net/uwPY5/
谁能解释发生了什么?