百度ueditor编辑器 同一页面使用多个时,出现提交数据丢失或无法传递数据的情况
老杨近日在使用ueditor时,发现了这个同一页面要使用多个ueditor编辑器时,出现提交数据丢失或无法传递数据的情况。
经反复研究,最终找到问题的原因,解决方法为:
<script>
$(function(){
var editor_$input_name = UE.getEditor(\"$input_name\", {
initialFrameWidth: '100%',
zIndex:'100',
initialFrameHeight: '400',
autoHeightEnabled: false,
serverUrl:'".Url::domain()."editer_upload.php',
autoFloatEnabled: true
});
})
</script>
增加$(function(){})或者ready()。
问题立马解决
给碰到相同