0

我有以下从 Javascript 代码“CKEditor”生成的代码。

编码:

<table border="2" id="table001">
<tbody>
    <tr>
        <td id="td001"><img alt="" src="http://localhost:8888/xxx/ckeditor/ckfinder/userfiles/images/hh.png" style="height:400px; width:400px" /></td>
    </tr>
    <tr>
        <td><em>This is the caption.</em></td>
    </tr>
</tbody>

我想知道如何使它在文本区域中以 1 个单位可拖动?我怎样才能做到这一点?

4

1 回答 1

0

CKEditor 中的拖放使用本机浏览器实现。如果有的话。这意味着只有在您使用的浏览器实际支持的情况下,您才能拖动图像、表格和内容。它在 IE 中工作得非常酷,但如果您先选择一些表格单元格,Firefox 和 Chrome 将允许您拖放。这与 CKEditor 几乎无关。

几次尝试在浏览器中标准化 D&D(龙与地下城:b)(不一定在 contenteditable 中),但这仍然不是一个好的实现。您可能也对这个问题感兴趣:Precise Drag and Drop within a contenteditable

我很抱歉这么说,但很可能您必须创建过多的代码才能获得可能无法按预期工作的东西。

于 2013-06-18T08:20:40.880 回答