我正在尝试让 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 中定义
感谢所有帮助。
谢谢你。