HTML ファイルにがtextarea
あり、そのデータをデータベースに送信する必要がありtextarea
ます。ただし、スペースtextarea
なしでデータを送信します。enter
したがって、次のようなデータ:
Shortly after reading a few books on web design, I was hooked. I wanted to know everything and anything about it. I was designing websites any chance I could.
I spent almost all of my savings buying more books on different programming languages and other nerdy computer gear.
データベースではこのようになります。
Shortly after reading a few books on web design, I was hooked. I wanted to know everything and anything about it. I was designing websites any chance I could. I spent almost all of my savings buying more books on different programming languages and other nerdy computer gear.
そこで、テキストエリアを a に変更してckeditor
、データを html として送信することにしました。しかし、私が にjQuery
メソッドを持っている今の問題はtextarea
、今ではうまくいきません。
HTML :
<td>
<textarea maxlength="5000" id="blah" cols="100" rows="20" name="essay_content" class="ckeditor" onkeyup="words();">
</textarea></td>
jQuery:
function words(content)
{
var f = $("#blah").val()
$('#othman').load('wordcount.php?content='+ encodeURIComponent(f));
}
テキスト領域がCkEditorであるため、今はうまくいきません...何か提案はありますか?