0

我正在尝试获取单击的图像的 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>
4

4 回答 4

3

只需使用this.id,无需将其包装在 jQuery 中。

var imagevar = this.id;

jsfiddle 上的示例

于 2012-05-04T11:37:29.973 回答
0

您可以使用以下方法直接获取任何属性的值:

$(this).attr('id');

祝你好运。

于 2012-07-16T15:09:58.650 回答
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
})
于 2012-05-04T11:35:43.487 回答
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

        })
    });
于 2012-05-04T11:36:13.353 回答