0

此脚本用于对帖子发表评论。我无法弄清楚如何制作 -textarea name='send[mc_comment]从表格工作。

将文本添加到 send[mc_comment] 时,它可以工作,但仅适用于第一条或第二条评论,其他评论为空!

a, b, c, d, e 按他们应该的方式工作。谁能帮我这个?

<script type="text/javascript">
var commentUrl = "comments.php";
function mainComment(a,b,c,d,e,f) {
    var f = $("textarea[name=send[mc_comment]]").val();
    var page = (d);
    $("#"+page).text("Please wait...").show();
    $.post(commentUrl,{user:a, friend:b, postid:c, where:d, which:e, send:f},function(data){$("#"+page).html(data).show().fadeOut(1000)})
}
</script>

表格包含:

textarea name='send[mc_comment]'

a href='#' onclick="return false" onmousedown="javascript:mainComment('php echo $usercode; ', 'echo $othermember;', 'echo $curpost;', 'echo 'add'.$curpost;', '<echo $comment;');">Yes /a

评论.php

<?php
$send = $_POST['send'];  
$user = $_POST['user'];  
$friend = $_POST['friend'];  
$postid = $_POST['postid'];  
$where = $_POST['where'];  
$which = $_POST['which'];

if($which == 'comment'){
    print_r($_POST).'<br />';
    echo "a ".$user." b ".$friend." c ".$postid." d ".$where." e ".$which." f ".$send."<br />";
}
?>

来自comments.php 的print_r 显示:

Array ( [user] => 9uVrPykP5u [friend] => 9uVrPykP5u [postid] => 41 [where] => add41 [which] => comment [send] => Some text added to the form. )

这仅适用于第一个帖子评论。

4

1 回答 1

0

尝试

$("textarea[name='send[mc_comment]']").val();
于 2013-05-29T16:41:03.907 回答