我的名字是 Ezequiel,我是 JQuery 的新手
我想动态更改 an 的 src 并获取它显示的图像的宽度。
我有一个带有 ID(“idImg”)的 img 标签。
问题是我的代码仅适用于第一个 src 更改,并且我必须多次更改(迭代),但我只会向您展示 2 个硬编码更改。
$("#idImg").attr("src", scrString); //src field changes ok
alert($("#idImg").width()) // ok, this is the real width.
$("#idImg").attr("src", scrStringANOTHER); //src field changes ok
alert($("#idImg").width()) // nope, it keeps the same width than the last one.
我不知道,只是无法找出问题所在
编辑:我知道我必须等到它加载,但如果我多次更改 src,那将不起作用。我需要多次更改 src,并检查每个图像的结果宽度。
有什么帮助吗?
很Ty
以西结。