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中。统计数据存在,并且正确调用此方法。
答案 0 :(得分:3)
function updateCount(text){
text = encodeURIComponent(text);
$.post("../process/countpaste.php", {text: text}).done(function( data ) {
$( "#stats" ).empty().append( data );
});
}
不是$(data)
而只是(data)