我使用tinymce和fullpage插件。当我删除内容时,它会删除整页属性。
含量
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="margin:5px;">
</body>
</html>
删除内容时删除元标记和正文样式。它应该只删除内部正文。我该如何修复这个错误?
我解决了这个问题:)
$element.tinymce({
force_p_newlines : false,
force_br_newlines : true,
convert_newlines_to_brs : false,
forced_root_block : '',
entity_encoding: 'raw',
setup : function(ed) {
ed.onKeyDown.add(function(ed,e){
if (e.keyCode==8 || e.keyCode==46)
{
if (ed.getBody().innerHTML=='<br>')
{
e.preventDefault();
e.stopPropagation();
}
if ($.trim(ed.getBody().innerText).length==$.trim(ed.selection.getContent({format:'text'})).length)
{
ed.selection.collapse();
$(ed.getBody()).html('');
tinymce.execCommand('mceFocus',false,ed.id);
e.preventDefault();
e.stopPropagation();
}
}
});
}
});