不能让Trumbowyg工作。引用错误

时间:2017-05-31 22:25:06

标签: javascript jquery trumbowyg

我正在努力让Trumbowyg(https://alex-d.github.io/Trumbowyg/)工作,这是我正在尝试运行的代码:

<html>
<head>

  <link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400' rel='stylesheet' type='text/css'>
  <link rel="stylesheet" href="//cdn.rawgit.com/Alex-D/Trumbowyg/v2.5.1/dist/ui/trumbowyg.min.css">
  <link rel="stylesheet" href="//cdn.rawgit.com/Alex-D/Trumbowyg/v2.5.1/dist/plugins/colors/ui/trumbowyg.colors.min.css">
  <script src="//cdn.rawgit.com/Alex-D/Trumbowyg/v2.5.1/dist/trumbowyg.min.js"></script>

</head>
<body>

<textarea id="hello" name="hello"></textarea>

<script>
  $(document).ready(function(){
   $('#hello').trumbowyg();
  });
</script>   


<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>

</body>
</html>

这没用。我现在真的很擅长Jquery :(

谷歌控制台抛出的错误是:

  

未捕获的ReferenceError:$未在skit3.php:14

中定义

感谢所有帮助。

谢谢。

1 个答案:

答案 0 :(得分:1)

你需要把: -

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>

在此之上: -

<script src="//cdn.rawgit.com/Alex-D/Trumbowyg/v2.5.1/dist/trumbowyg.min.js"></script>

更改此功能,即可使用。

注意: - 无论何时您要使用任何第三方js库或您自己的脚本代码,都需要在它之前添加jquery库。