"; } $html .= "\n"; $html .= "웹에디터 시작"; $html .= "\n"; $html .= "\n웹 에디터 끝"; $html .= "\n"; } else { $html .= "\n"; } return $html; } // textarea 로 값을 넘긴다. javascript 반드시 필요 function get_editor_js($id, $is_dhtml_editor=true) { if ($is_dhtml_editor) { return "document.getElementById('tx_{$id}').value = ed_{$id}.outputBodyHTML();\n"; } else { return "var {$id}_editor = document.getElementById('{$id}');\n"; } } // textarea 의 값이 비어 있는지 검사 function chk_editor_js($id, $is_dhtml_editor=true) { if ($is_dhtml_editor) { return "if (document.getElementById('tx_{$id}') && jQuery.inArray(ed_{$id}.outputBodyHTML().toLowerCase().replace(/^\s*|\s*$/g, ''), [' ','

 

','


','

','

','
','']) != -1) { alert(\"내용을 입력해 주십시오.\"); ed_{$id}.returnFalse(); return false; }\n"; } else { return "if (!{$id}_editor.value) { alert(\"내용을 입력해 주십시오.\"); {$id}_editor.focus(); return false; }\n"; } } ?>