gpt4 book ai didi

javascript - Image.onload 中 IE8 中的事件目标

转载 作者:行者123 更新时间:2023-11-29 20:08:04 25 4
gpt4 key购买 nike

在我的图像的 onLoad 事件处理程序中,我需要获取触发该事件的图像的 URL。在 IE8 中,window.event.srcElement 的值始终为 null。有解决方法吗?

var image = new Image();
image.onload = function (e) {
var v = e || window.event;
var t = v.target || v.srcElement;
// t is null here
//...
};
image.src = "test.png";

最佳答案

只需使用这个。事件处理程序中的 this 是附加事件的元素。

image.onload = function() {
var t = this;
alert(t);
};

关于javascript - Image.onload 中 IE8 中的事件目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11267882/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com