正在寻找更直观的jQuery选择器,用于从“";这";一行

正在寻找更直观的jQuery选择器,用于从“";这";一行,jquery,jquery-selectors,Jquery,Jquery Selectors,我有一个由以下行组成的表: <tr> <td> <a href="http://www.google.com/">Link</a> </td> <td>It takes about 3 seconds for a search instead of the normal .3 seconds. </td> <td> <input type="text" cla

我有一个由以下行组成的表:

<tr>
  <td>
    <a href="http://www.google.com/">Link</a>
  </td>
  <td>It takes about 3 seconds for a search instead of the normal .3 seconds.
  </td>
  <td>
    <input type="text" class="priority" size="3" value="-5"/>
  </td>
  <td>
    Functionality
  </td>
  <td>
    8/1/2012 6:57:03 AM</td><td>FarQuad
  </td>
  <td>
    <select class="assign">
      <option value="No One" selected="selected">No One</option>
      <option value="Landon" >Landon</option>
      <option value="Steve" >Steve</option>
      <option value="Brandon" >Brandon</option>
    </select>
  </td>
  <td>
    <select class="status">
      <option value="Unassigned" selected="selected">Unassigned</option>
      <option value="Assigned" >Assigned</option>
      <option value="In Progress" >In Progress</option>
      <option value="Completed" >Completed</option>
    </select>
  </td>
  <td>
    <input type="text" class="notes" value="Super notes"/>
  </td>
  <td> 
    <input type="button" id="16" Value="Save" onclick="updateThisIssueRow(this)" />
  </td>
</tr>
现在,我基本上需要使用jQuery获取issueIDInput、newPriorityInput等的值,然后将它们提供给ajax函数的其余部分,这是可行的。我正在为这些值寻找更易于阅读的jQuery选择器。我知道我可以像在newPriorityInput中那样抓取所有东西(这很有效),但我的老板对jQuery了解不多(因此不喜欢/不信任它)。有没有更直观的选择器

非常感谢您的任何帮助

怎么样

    function updateThisIssueRow(thisRowsButton) {
        var issueIDInput, newPriorityInput, newAssignPersonInput, newIssueStatusInput, newIssueNotesInput;
        var $currentRow = $(thisRowsButton).closest('tr');
        issueIDInput = thisRowsButton.id;
        newPriorityInput = $currentRow.find('.priority').val();
        alert("Value of newPriorityInput is: " + newPriorityInput);

哦,太棒了!查找()正是我所需要的!(最近的也很酷)(上面说要等7分钟…)
    function updateThisIssueRow(thisRowsButton) {
        var issueIDInput, newPriorityInput, newAssignPersonInput, newIssueStatusInput, newIssueNotesInput;
        var $currentRow = $(thisRowsButton).closest('tr');
        issueIDInput = thisRowsButton.id;
        newPriorityInput = $currentRow.find('.priority').val();
        alert("Value of newPriorityInput is: " + newPriorityInput);