选择最近的textarea到一个按钮

时间:2012-07-16 00:59:02

标签: php javascript jquery closest

我有一个表td,其中包含一个textarea和一个按钮,我希望通过AJAX按钮点击发送textarea的值但是选择最近的textarea到按钮时会出现问题

的JavaScript

$(document).ready(function () {
    $(document).on("click", ".addR", function () {
        paperID = $(this).attr("paperID");
        commentID = $(this).attr("commentID");
        text = $(this).closest("textarea").val();
        $.ajax({
            data: {
                paperID: paperID,
                commentID: commentID,
                text: text
            },
            type: 'POST',
            url: 'add_rebuttal.php',
            success: function (response) {
                alert(response);
                window.location.href = window.location.href;
            }
        });
    });
});

PHP:

while ($row = mysql_fetch_assoc($comments)) {
    echo "<tr><td>{$row['text']}</td>";
?>
    <td><br /><textarea class="reText" rows='5' name='reText' id='reText' style='width:98%;' type='text'></textarea>
    <button commentID="<?php echo $row['comment_id'] ?>" paperID="<?php echo $paper_id ?>" class="addR" type="button" name="addR" id="addR">send rebuttal</button></td></tr> <?
}

问题是$(this).closest("textarea").val();返回undefined,所以我怎么能解决这个问题?

2 个答案:

答案 0 :(得分:6)

nearest()返回最近的祖先。你的textarea不是你按钮的祖先,它是以前的兄弟姐妹。相反,尝试:

text = $("textarea", $(this).parent()).val();

答案 1 :(得分:1)

要获取textarea的文本,您必须使用text()而不是val()。正如Scotty所指出的,你想要的textarea不是祖先,所以不要使用closest()