我正在使用 asp.net 数据列表,当单击该单元格的锚点时,我必须找到隐藏字段值。
我试图使用parent()
,closest()
<script type="text/javascript">
$('.document').ready(function () {
$('.addtocompare').bind('click', function () {
var hdnProductId = $(this).parent().find('.hdnProductId input[type=hidden]').val();
alert(hdnProductId);
return false;
});
});
</script>