0
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 中。Stats 存在,并且此方法被正确调用。

4

1 回答 1

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

$(data)只是(data)

于 2013-06-16T23:47:59.917 回答