首先,如果我不提供所有内容,我想道歉,因为我不知道该怎么做。
我使用带有Javascript的redips拖放库来拖放表格中的内容。
这是redips文档中的建议,以便可以拖动:
Here are minimal steps to enable content dragging in table:
put <script type=”text/javascript” src=”redips-drag-min.js”></script> to the head section
initialize REDIPS.drag library: <body onload=”REDIPS.drag.init()”>
place table(s) inside <div id=”redips-drag”> to enable content dragging
place <div class=”redips-drag”>Hello World</div> to the table cell
可以找到Redips文档here。
这就是我所拥有的:
<td style="background-color: crimson; color: rgb(255, 255, 255);"><div id="d1" style="background-color:crimson;color:#fff;" class="redips-drag" value="maths"></div></td>
这被包装在一个表中,该表位于名为“redips-drag”的div中
但刷新
后,单元格无法拖动就像我说的,我知道我没有提供完整的代码。
但是我想知道是否有人遇到同样的情况?
非常感谢任何建议或指南