在我的 html 页面中,我有一个图像,在单击一个按钮时,我正在调用函数 TestLoad() 它正在更改图像的 src 并且当图像加载时我正在做某事...采取示例: javascript:
function TestLoad() {
alert('before');
$('#ImgTest').attr('src', 'Images/Image1.jpg');
$('#ImgTest').load(function () {
alert('after');
});
}
html:
<img id = "ImgTest" alt="" src="" style="width:100px; height:100px"/>
<input type="button" onclick ="TestLoad();" value="TestLoad"/>
我的问题是:当我第一次单击按钮时,我会收到一次“之后”的警报,如果我再次单击,警报将显示两次,第三次显示 3 次...
请指教 谢谢