我尝试在我的laravel项目中实现CKeditor wysiwig。 我的配置如下:
<html>
<head>
<script src="/js/jquery.js"></script>
</head>
<body>
{!! Form::label('text', 'Bericht') !!}
//Generates textarea with class ckeditorArea
{!! Form::textarea('text', null, ['class' => 'form-control ckeditorArea'])!!}
</body>
<script src="/plugin/ckeditor/ckeditor.js"></script>
<script src="/js/functions.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="/js/bootstrap.min.js"></script>
<script>
// Replace the <textarea class="ckeditorArea"> with a CKEditor
// instance, using default configuration.
CKEDITOR.replaceClass = 'ckeditorArea';
</script>
</html>
wysiwig在Firefox和Internet Explorer中加载但不会加载chrome。
我清除了缓存,做了一次难以刷新的事情以及我能想象到的一切都会有所帮助。
修改 我正在使用xampp在localhost上进行开发。
似乎是 jquerys 错误,我添加了jquery cdn它工作了一秒钟而不是停止工作。我真的很绝望。
使用127.0.0.1而不是localhost工作正常,为什么不使用localhost是最后的问题而不是。