我有这个代码。
jQuery(document).ready(function () {
if (navigator.appName == "Microsoft Internet Explorer") {
$("label img").each(function (i) {
$(this).click(imageClikced);
});
}
});
function imageClikced(img) {
alert(img.type);
}
在警报框中,我得到 img.type 作为点击。我应该如何将图像作为参数传递给 imageClikced 函数。
谢谢你的帮助。