innerHTML 在 IE 9 中无法工作,但在 Firefox 中工作正常
<script>
function add(memid) {
var likedcount=document.getElementsByName("liked"+memid);
for (var i = 0; i < likedcount.length; i++)
{
likedcount[i].innerHTML = parseInt(likedcount[i].innerHTML)+1;
}
}
</script>
<b name="liked123">5</b>
<b name="liked123">5</b>
<b name="liked123">5</b>
<input type="button" onclick="add(123);" value="add">
以上适用于 FF 但由于某种原因 IE 不适用?
<script>
function add(memid) {
var likedcount=document.getElementsByName("liked"+memid);
for (var i = 0; i < likedcount.length; i++)
{
likedcount[i].innerHTML = parseInt(likedcount[i].innerHTML)+1;
}
}
</script>
<b name="liked123">5</b>
<b name="liked123">5</b>
<b name="liked123">5</b>
<input type="button" onclick="add(123);" value="add">
the above works for FF but for some reason IE doesnt?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于标签没有定义“名称”属性,因此这将不起作用。 Microsoft 声明标记不本身支持 name 属性(即该属性是“expando”),不会从 getElementsByName 返回。
Since the tag does not define a "name" attribute this will not work. Microsoft states that tags that don't natively support the name attribute (ie the attribute is an "expando"), do NOT get returned from getElementsByName.