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