我正在尝试使用 JavaScript 验证 fckeditor 值是否为空白但没有运气。
我正在使用 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');
当编辑器是空的并提醒我并且我在其中写了一些东西时,它会一直提醒它是空的。