我正在尝试添加textarea并使用
动态激活它tinyMCE.execCommand('mceAddControl', false,'id')
我已经尝试过其他textareas并且效果很好,但是没有使用这个特定的textarea:
'id_sguidepoint_set-'+index+'-gp_description'
这个名字太大了吗?或者因为某些字符在tinyMCE中无效?
这是我的tinyMCE初始配置:
tinyMCE.init({
mode : "textareas",
theme : "advanced",
plugins : "emotions,spellchecker,advhr,insertdatetime,preview,jbimages",
// Theme options - button# indicated the row# only
theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,jbimages,|,code,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "insertdate,inserttime,|,spellchecker,advhr,,removeformat,|,sub,sup,|,charmap,emotions",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_resizing : false ,
relative_urls : false
});
这是我要激活的元素:
<textarea id="id_sguidepoint_set-3-gp_description" rows="10" cols="40" name="sguidepoint_set-3-gp_description" style="display: none; " aria-hidden="true"></textarea>
显然有多个textarea,这就是为什么我必须使用索引迭代它们
任何帮助都将非常感激
提前致谢
答案 0 :(得分:2)
好的,在尝试了很多不同的事情后,我发现我的问题是textarea被隐藏了:
style= "display: none"
所以这就是问题,因为可以绘制textarea一切正常。
我希望它对同样问题的其他人有所帮助。
此致