我的代码是
<div id="fields">
<form id="question-form"> <input type="hidden" name="question-main" value="<?php echo mysql_prep($_GET['ques']);?>" /></form>
<a class="vote-up-off">up vote</a>
<span class="vote-count-post"><?php echo $row["upvotes"]+$row["downvotes"];?></span>
<a class="vote-down-off" id="<?php echo mysql_prep($_GET['ques']);?>" >down vote</a>
<a class="star-off" href="#">favorite</a>
</div>
我的jQuery代码是
$("document").ready(function(){
$(".vote-up-off").click(function(){
// here i want the id of form field and votecountpost field which is up and down to this field
})
})
div 字段作为数据库中存在的字段一次又一次地重复。所以我想使用 jquery 获取特定的字段 id,并将使用 jquery 执行一些操作。如何找到这个?