我有这个表单,但这个表单在PHP foreach函数中提供了来自数据库的值,所以我不能给表单id,因为冗余会发生。当点击星级中的任何一个星级时它会作为提交,去功能所以在我想要提交表格的功能中没有id如何?
<form class="watching-us-reating-form" name="swatching-us-reating-form" action=" method="get">
<input type="hidden" name="watchlist_id" value="<?php echo $fundAndUserWatchingThem['contactId']?>">
<!-- This hidden field used to save the value of the rating before submit -->
<input type="text" name="priority" class="watching-us-reating-value">
<!-- This DIV to contain the stars rating -->
<div class="watching-us-rating-div" data-score="<?php echo $flag; ?>" data-number="<?php echo $numberOfStars; ?>"></div>
</form>
答案 0 :(得分:10)
您可以使用closest()
获取与点击的星级相关的form
元素:
$('.watching-us-rating-div').click(function() {
$(this).closest('form').submit();
});
此外,您的form
代码缺少action
- 您的示例中是否有错误?