Php 不能';不要在tinyMCE'中键入任何内容;s模态

Php 不能';不要在tinyMCE'中键入任何内容;s模态,php,html,laravel,tinymce,Php,Html,Laravel,Tinymce,对不起。我对tinyMCE有意见。所以,问题是我不能在tinyMCE的模式中键入任何内容。通常,当我们使用tinyMCE插入媒体或链接时,总会出现如下模式: 我想键入链接,但它不能。当我在另一个项目文件夹(例如:文件夹B)中尝试时,效果很好。但只有在这个项目(文件夹A)中才出现了问题。我将在我的项目文件夹中显示tinyMCE的路径(tinyMCE文件夹位于bower_components文件夹中)。在这里: 这是我链接到索引文件的脚本: <script src="{{ ass

对不起。我对tinyMCE有意见。所以,问题是我不能在tinyMCE的模式中键入任何内容。通常,当我们使用tinyMCE插入媒体或链接时,总会出现如下模式:

我想键入链接,但它不能。当我在另一个项目文件夹(例如:文件夹B)中尝试时,效果很好。但只有在这个项目(文件夹A)中才出现了问题。我将在我的项目文件夹中显示tinyMCE的路径(tinyMCE文件夹位于bower_components文件夹中)。在这里:

这是我链接到索引文件的脚本:

<script src="{{ asset('bower_components/tinymce/tinymce.min.js')}}"></script>
<script src="{{ asset('bower_components/tinymce/jquery.tinymce.min.js')}}"></script>
<script src="{{ asset('http://127.0.0.1:8000/bower_components/tinymce/plugins/tiny_mce_wiris/integration/WIRISplugins.js?viewer=image')}}"></script>
<script src="{{ asset('js/sweetalert2.min.js') }}"></script>
<script type="text/javascript">
    tinymce.init({
            external_plugins: {
                'tiny_mce_wiris' : 'http://127.0.0.1:8000/bower_components/tinymce/plugins/tiny_mce_wiris/plugin.min.js'
            },
            selector: 'textarea#materi',
            height: 200,
            plugins: 'print preview paste importcss searchreplace autolink autosave save directionality code visualblocks visualchars fullscreen image link media template codesample table charmap hr pagebreak nonbreaking anchor toc insertdatetime advlist lists wordcount imagetools textpattern noneditable help charmap quickbars emoticons',
            imagetools_cors_hosts: ['picsum.photos'],
            menubar: 'file edit view insert format tools table help',
            toolbar: 'undo redo | bold italic underline strikethrough | fontselect fontsizeselect formatselect | alignleft aligncenter alignright alignjustify | outdent indent |  numlist bullist | forecolor backcolor removeformat | pagebreak | charmap emoticons | fullscreen  preview save print | insertfile image media template link anchor codesample | ltr rtl | tiny_mce_wiris_formulaEditor | tiny_mce_wiris_formulaEditorChemistry',
            toolbar_sticky: true,
            autosave_ask_before_unload: true,
            autosave_interval: '30s',
            autosave_prefix: '{path}{query}-{id}-',
            autosave_restore_when_empty: false,
            autosave_retention: '2m',  
            image_caption: true,
            quickbars_selection_toolbar: 'bold italic | quicklink h2 h3 blockquote quickimage quicktable',
            noneditable_noneditable_class: 'mceNonEditable',
            toolbar_mode: 'sliding',
            content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }'
        });
</script>

tinymce.init({
外部插件:{
“tiny_mce_wiris”:http://127.0.0.1:8000/bower_components/tinymce/plugins/tiny_mce_wiris/plugin.min.js'
},
选择器:“文本区域#材料”,
身高:200,
插件:“打印预览粘贴导入SCS搜索替换自动链接自动保存保存方向性代码可视块可视字符全屏图像链接媒体模板代码示例表charmap hr pagebreak非中断锚定toc insertdatetime advlist列出字数图像工具textpattern非编辑帮助charmap快速栏表情”,
imagetools\u cors\u主机:['picsum.photos'],
菜单栏:“文件编辑视图插入格式工具表帮助”,
工具栏:“撤消重做|粗体斜体下划线删除线|字体选择字体大小选择格式选择|对齐左对齐居中对齐右对齐对齐对齐对齐|凹痕缩进|纽姆利斯特金条|前景色背景色删除格式|分页|字符地图表情|全屏预览保存打印|插入文件图像媒体模板链接定位代码样本| ltr rtl”| tiny_mce_wiris_公式编辑器| tiny_mce_wiris_公式编辑器化学|,
工具栏:对,
卸载前自动保存询问:真,
自动保存间隔:“30秒”,
自动保存前缀:'{path}{query}-{id}-',
当\u为空时自动保存\u还原\u:false,
自动保存保留:“2m”,
图片说明:正确,
快速栏_选择_工具栏:“粗体斜体|快速链接h2 h3块引号quickimage quicktable”,
不可编辑\u不可编辑\u类:“mceNonEditable”,
工具栏_模式:“滑动”,
内容风格:“正文{字体系列:Helvetica,Arial,无衬线;字体大小:14px}”
});
顺便说一下,我的索引文件中有一个模态,但它与该索引文件分开。在该模式文件中,有一个id=“matri”的文本区域

我没有在索引文件中链接jquery,而是在组件文件夹的_script.blade.php中链接

你能告诉我发生了什么事吗?为什么我不能输入tinyMCE的模态?请帮帮我。多谢各位