试着像这样在TinyMCE body的标签上声明,它对我有用
在tiny\\u mce\\u src上。js公司
t.iframeHTML += \'</head><body ondrop="parent.drop(event);" " id="\' + bi + \'" class="mceContentBody \'+ t.id +\'_cl\' + bc +\'" onload="window.parent.tinyMCE.get(\\\'\' + t.id + \'\\\').onLoad.dispatch();"><br></body></html>\';
在编辑页面上:
function drop(ev)
{
ev.preventDefault();
var data=ev.dataTransfer.getData("Text");
tinyMCE.execCommand(\'mceInsertContent\',true,data);
}
function allowDrop(ev) {
ev.preventDefault();
}
function drag(ev) {
var html = $(\'#\'+ev.target.id).html();
ev.dataTransfer.setData("Text",html);
}
将jquery与TinyMCE一起使用似乎不起作用。。。