$ .post与jQuery完成后不返回结果

时间:2013-06-16 23:42:29

标签: php jquery

function updateCount(text){
text = encodeURIComponent(text);
$.post("../process/countpaste.php", {text: text}).done(function( data ) {
    $( "#stats" ).empty().append($( data ));
});
}

在countpaste.php上,

<?php

$text = urldecode($_POST['text']);

?>
<?=strlen($text)?> characters, <?=str_word_count($text)?> words, <?=substr_count($text, "\n")?> lines

由于某种原因,PHP页面中的字符串未放在#stats div中。统计数据存在,并且正确调用此方法。

1 个答案:

答案 0 :(得分:3)

function updateCount(text){
    text = encodeURIComponent(text);
    $.post("../process/countpaste.php", {text: text}).done(function( data ) {
        $( "#stats" ).empty().append(   data  );
   });
}

不是$(data)而只是(data)