我想知道隐藏的价值textarea
创建人wp_editor()
或者检查是否键入了任何内容,但问题是该值是在提交时更新的,而不是动态更新的。我需要的是用jQuery验证字段是否已填写。
我的字段:
$settings = array(
\'editor_height\' => 300,
\'media_buttons\' => false,
\'teeny\' => false,
\'quicktags\' => false
);
wp_editor( $post->post_content ,\'my_content\', $settings);
我唯一的想法是:
var name = $(\'iframe#st_content_ifr\').contents().find(\'#tinymce p\').length;
然后数数段落,但这种解决方案在我看来有点愚蠢。有没有更好的办法?