我有这个HTML:
<table class="table">
<tr>
<th>Logo</th>
<th>Artical</th>
<th>News</th>
</tr>
<tr id="sortable">
<td>something</td>
<td class="ui-state-default">2014 news from our department</td>
<td class="ui-state-default"></td>
</tr>
</table>
使用此JavaScript代码允许用户将文本从artical列拖动到新闻列,反之亦然
<script>
$(function () {
$("#sortable").sortable();
$("#sortable").disableSelection();
});
</script>
问题:从列拖放到其他地方很痛苦,我经常在尝试将项目拖到列上时失败。我应该狙击成功!有谁遇到这个问题?
答案 0 :(得分:0)