我有一个 jQuery 可排序列表。当我开始拖动一个项目时,我想在拖动时删除一些文本,以便在拖动时只显示第一行。例如,我有一个 ol:
<ol>
<li>Here is some text. <span>Here is a bunch of other text</span>
<li>Here is some text also. <span>Here is a bunch of other text as well</span>
</ol>
当我开始拖动第一个 li 时,我希望它在拖动时只显示“这是一些文本”。这可能吗?