admin管理员组文章数量:1345189
Following the examples in the jQuery UI demo and documentation, I'm using this HTML:
<ul class="sort">
<li>
<button>A</button>
</li>
<li>
<button>B</button>
</li>
<li>
<button>C</button>
</li>
</ul>
And this JS:
$(function () {
$('.sort').sortable();
})
But as seen in this JSFiddle example, the buttons are not drag-able.
How can I make .sortable() work with buttons?
Following the examples in the jQuery UI demo and documentation, I'm using this HTML:
<ul class="sort">
<li>
<button>A</button>
</li>
<li>
<button>B</button>
</li>
<li>
<button>C</button>
</li>
</ul>
And this JS:
$(function () {
$('.sort').sortable();
})
But as seen in this JSFiddle example, the buttons are not drag-able.
How can I make .sortable() work with buttons?
Share Improve this question asked May 22, 2014 at 17:20 SyntheadSynthead 2,3215 gold badges24 silver badges26 bronze badges2 Answers
Reset to default 10Sortable provides a cancel
selector to prevent sorting on specified elements. The default value includes <button>
elements, and your sort handles are buttons, so sorting is prevented:
cancel
Type: Selector
Default: "input,textarea,button,select,option"
Prevents sorting if you start on elements matching the selector.
To solve this, set the cancel
selector to an empty string:
$('.sort').sortable({
cancel: ''
});
ul {
list-style: none;
margin: 0;
padding: 0;
width: 100px;
}
button {
width: 100%;
}
<link href="//code.jquery./ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare./ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="//code.jquery./ui/1.10.3/jquery-ui.js"></script>
<ul class="sort">
<li><button>A</button></li>
<li><button>B</button></li>
<li><button>C</button></li>
</ul>
View on JSFIddle
Also, you can specify the draggable handles for sortable()
by using the handle
option:
$('.sort').sortable({handle:'button'});
But in your case, the entire content of each <li>
element is a <button>
, so you won't need to specify it.
Ahhh, you know what? jQuery UI prevents .sortable() from working on buttons by default, as stated in the .cancel() section of the documentation! Clearing this default allows the buttons to be sort-able like in this updated example.
The functional JS/jQuery looks like this:
$(function () {
$('.sort').sortable({
cancel: ''
});
})
本文标签: javascriptSortable jQuery UI list with buttonsStack Overflow
版权声明:本文标题:javascript - Sortable jQuery UI list with buttons - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698355a2523888.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论