带括号的Textarea不能在jQuery中工作

时间:2013-05-29 16:38:51

标签: jquery

此脚本用于评论帖子。我无法弄清楚如何从表格中做出textarea name='send[mc_comment]

当文本被添加到发送[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

comments.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 />";
}
?>

print_r显示来自comments.php:

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

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

1 个答案:

答案 0 :(得分:0)

尝试

$("textarea[name='send[mc_comment]']").val();