• 周三. 1 月 15th, 2025

5G编程聚合网

5G时代下一个聚合的编程学习网

热门标签

jquery拖动排序功能

admin

11 月 28, 2021
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <script src="jquery.js"></script>
  <script src="jquery-ui.js"></script>
  <script>
  $(function() {
    $( "#sortable" ).sortable();
    $( "#sortable" ).disableSelection();
  });
  </script>
</head>
<body>
<ul id="sortable">
  <li>1</li>
  <li>2</li>
  <li>3</li>
  <li>4</li>
  <li>5</li>
  <li>6</li>
  <li>7</li>
</ul>
</body>
</html>

发表回复