我正在尝试获取单击的图像的ID,然后使用表单提交它(通过设置隐藏的imagenr输入的val)。但是我不知道怎么拉id。
$(document).ready(function () {
$(".test-img").click(function () {
var imagevar = // How to grab the clicked img id?
$("#imagenr").val(imagevar); // set the img id to the hidden input
$("form#test-form").submit(); // submit the form
})
})
<form action="#" method="post" id="test-form">
<input type="hidden" name="imagenr" id="imagenr" value="">
<img class="test-img" id="1" src="images/image1.jpg" alt=""/>
<img class="test-img" id="2" src="images/image2.jpg" alt=""/>
</form>
答案 0 :(得分:3)
答案 1 :(得分:0)
$(".test-img").click(function () {
var imagevar = $(this).attr('id');
$("#imagenr").val(imagevar); // set the img id to the hidden input
$("form#test-form").submit(); // submit the form
})
答案 2 :(得分:0)
$(document).ready(function () {
$(".test-img").click(function () {
var imagevar = $(this).attr('id');
$("#imagenr").val(imagevar); // set the img id to the hidden input
$("form#test-form").submit(); // submit the form
})
});
答案 3 :(得分:0)
您可以使用以下内容直接获取任何属性的值:
$(this).attr('id');
祝你好运。