gpt4 book ai didi

Jquery选择图像

转载 作者:行者123 更新时间:2023-12-01 01:59:26 24 4
gpt4 key购买 nike

首先,我是 Jquery 新手。

我有这样的图片。我想要的是,当用户单击图像时,它会使图像带有边框。用户可以选择多个图像。选择时所有内容都必须带有边框。单击按钮后,我将获得图像 ID。

  <tr><img id="i will put value for db processing"src="urlofimage"</tr> &nbsp;

enter image description here

我该怎么做?

最佳答案

你的意思是:


$.fn.hasBorder = function() {
if ((this.outerWidth() - this.innerWidth() > 0) || (this.outerHeight() - this.innerHeight() > 0)){
return true;
}
else{
return false;
}
};
$(document).ready(function() {
var selectedImgsArr = [];
$("img").click(function() {

if($(this).hasBorder()) {
$(this).css("border", "");
//you can remove the id from array if you need to
}
else {
$(this).css("border", "1 px solid red");
selectedImgsArr.push($(this).attr("id")); //something like this
}
});
});

关于Jquery选择图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10170280/

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