选择图像并了解所选图像

时间:2016-07-07 14:13:50

标签: javascript php jquery html dom

我有一张图片列表。选择图像时,下一个过程是向同一图像添加要素并进行编辑。

问题是我不知道如何识别选择了哪个特定图像。那里有很多图像。有没有像使用js或php或其他东西临时存储图像的方法。

就像在java中,如果用户选择某个特定内容,您可以设置if语句,如

dll

我想要这样的东西让我知道用户选择了哪个特定的图像。我会附上一张照片以便更加强调 image
我想知道如何识别所选的特定图像

2 个答案:

答案 0 :(得分:0)

根据我的理解,这就是你所需要的:

$('.image').on('click',function(){
  var currentImage=$(this);
};

答案 1 :(得分:0)



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<script>
	function chkimage(img)
	{
		if(img.id=="img1")
		{
			img.height = "200";
		}
		else if(img.id=="img2")
		{
			img.width = "200";
		}
	}
</script>
<body>
<img id="img1" src="Chrysanthemum.jpg" height="100" width="100" onclick="chkimage(this)"/><br/>
<img id="img2" src="Desert.jpg" height="100" width="100" onclick="chkimage(this)"/><br/>
<img id="img3" src="Hydrangeas.jpg" height="100" width="100" onclick="chkimage(this)"/><br/>

</body>
</html>
&#13;
&#13;
&#13;