1

我正在尝试让 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 中定义

感谢所有帮助。

谢谢你。

4

1 回答 1

2

你需要把: -

<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 库。

于 2017-05-31T22:47:43.043 回答