当代码在localhost外部运行时,以下代码中的分区不可排序。
<html>
<head>
<style>
div {
width: 100;
border: solid black 1px;
text-align: center
}
</style>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function() {
$("#sort").sortable({
axis: "y"
});
});
</script>
</head>
<body>
<div id="sort">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
</body>
</html>
答案 0 :(得分:0)
您在脚本代码中缺少https://,请将其替换为:
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>