fckeditor の値が空白であるかどうかを JavaScript を使用して検証しようとしていますが、うまくいきません。
私はjavascriptを使用してエディタを作成しています:
var oFCKeditor = new FCKeditor('txtMessage');
oFCKeditor.BasePath = "../fckeditor/";
oFCKeditor.ToolbarSet = "Default";
oFCKeditor.Height = "500";
oFCKeditor.Value = "test";
oFCKeditor.Create();
しかし、私が使用するとき:
if (document.form.txtMessage.value == "") {
alert('You Must Enter a Message');
エディターが空で警告が表示され、それに何かを書き込むと、それが空であることを警告し続けます。