我有一个使用 jQuery 的字数统计问题。一旦我单击空格,该方法就会起作用,它将停止。
HTML:
<textarea id="essay_content_area" name="essay_content" onkeydown="words();"></textarea>
<td>Number of words: <div id="othman"></div></td>
jQuery:
function words(content)
{
var f = $("#essay_content_area").val()
$('#othman').load('wordcount.php?content='+f);
}
PHP 文件:
if(isset($_GET['content']))
{
echo $_GET['content']; // if it works I will send this variable to a function to calculate the words
}
脚本显示内容,直到我单击空格。有什么建议么 ?