单击时添加/重命名 ID
我有以下代码:
if (el.nodeName == 'IMG'){
e1.addEventListener('click', function(e) {
el.id = this.src;});
}
知道为什么当我单击图像时这不起作用吗?
I have the following code:
if (el.nodeName == 'IMG'){
e1.addEventListener('click', function(e) {
el.id = this.src;});
}
any idea why this doesn't work when I click on the image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
e1
与el
第二个是 L 而不是 1(一)。e1
vsel
the second one is an L not a 1 (one).