我想在超链接中捕获图像并调整其大小以供用户显示给最终用户。我编写了以下代码。但这无济于事。你能帮帮我吗?
if ($(this).find("img").attr("src") != null) {
var abc = $(this).attr('id');
$("#" + abc).width(20);
$("#" + abc).height(20);
$("#" + abc).show();
setTimeout(function () {
$("a").find("img").attr("src", "images/Capture.PNG");
}, 6000);}
}