繁体   English   中英

未捕获的类型错误:$(...).nestedSortable 不是函数

[英]Uncaught TypeError: $(...).nestedSortable is not a function

我尝试使用https://github.com/mjsarfatti/nestedSortable 中的嵌套排序插件,但我不断收到此错误

Uncaught TypeError: $(...).nestedSortable is not a function

这是我的头

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <title><?php echo $meta_title; ?></title>


    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet">

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
    <script src="js/jquery-ui.js"></script>
    <script src="js/jquery.mjs.nestedSortable.js"></script>

    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>

这是身体

    <ol class="sortable">
    <li><div>Some content</div></li>
    <li>
        <div>Some content</div>
        <ol>
            <li><div>Some sub-item content</div></li>
            <li><div>Some sub-item content</div></li>
        </ol>
    </li>
    <li><div>Some content</div></li>
</ol>

我使用的 Javascript 代码

$(document).ready(function(){
    $('.sortable').nestedSortable({
        handle: 'div',
        items: 'li',
            toleranceElement: '> div'
    });
});

请帮我

我已经测试了 nestedSortable 并且此代码有效

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  <title><?php echo $meta_title; ?></title>


  <!-- Bootstrap -->
  <!-- <link href="css/bootstrap.min.css" rel="stylesheet"> -->
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
  <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
  <script src="http://mjsarfatti.com/sandbox/nestedSortable/jquery.mjs.nestedSortable.js"></script> 


      <script>
        $(document).ready(function(){
          $('.sortable').nestedSortable({
            handle: 'div',
            items: 'li',
            toleranceElement: '> div'
          });
        });
      </script>
    </head>

    <body>

      <div>
        <ol class="sortable">
          <li><div>Some content</div></li>
          <li>
            <div>Some content</div>
            <ol>
              <li><div>Some sub-item content</div></li>
              <li><div>Some sub-item content</div></li>
            </ol>
          </li>
          <li><div>Some content</div></li>
        </ol>

      </div>
    </body>

尝试将此代码放入文件中并执行它。 如果它有效,请不要使用外部链接

下载 css 和 js 将它们保存在您的项目文件夹中并从那里包含它们

您必须使用NestedSortable的升级版本。 这里的updaed版本nestedSortablehttps://github.com/ilikenwf/nestedSortable

此外,您还没有在文件中包含 jQuery-UI.js 文件: <script src="//code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>添加此代码在包含jquery.mjs.nestedSortable.js文件之前

该错误表明您的 jQuery 对象上不存在该方法。 这意味着 NestedSortable 插件尚未加载。

参考这一行:

<script src="js/jquery.mjs.nestedSortable.js"></script>

检查地址是否正确,以及 JavaScript 文件是否存在于该位置。

更新你的脚本

<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
  <script src="http://mjsarfatti.com/sandbox/nestedSortable/jquery.mjs.nestedSortable.js"></script>

<script src="js/jquery-ui.js"></script>
<script src="js/jquery.mjs.nestedSortable.js"></script>

在以下 github 上: NESTEDSORTABLE

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM