简体   繁体   English

添加自定义JavaScript后,功能停止工作

[英]Feature stops working when custom javascript is added

I am a JavaScript beginner and I am hoping someone here could help me solve this: 我是JavaScript初学者,希望这里有人可以帮助我解决此问题:

I've added this JavaScript to header using header and footers plugin: 我已经使用页眉和页脚插件将此JavaScript添加到页眉中:

<script src="https://ajax.googleapis.com/…/li…/jquery/3.4.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $(".flip").click(function(){
    $(".panel").slideToggle("slow");
  });
});
</script>

<script>
$(document).ready(function(){
  $(".zavrit").click(function(){
    $(".panel").slideUp("slow");
  });
});
</script>

I am targeting it to the sections with contact forms all over the page because my client wanted to reveal them on click. 我将其定位为整个页面上具有联系表单的部分,因为我的客户希望在点击时显示它们。 (I am using a text editor to add the sections with shortcodes to the divs with custom classes) (我正在使用文本编辑器将带有短代码的部分添加到具有自定义类的div中)

The function is working just fine, but the problem is, the image carousel lightbox feature stopped working properly, as when you click on an image and want to slide to another, the arrows don't work. 该功能正常工作,但是问题是图像轮播灯箱功能停止正常运行,因为当您单击图像并想滑动到另一个图像时,箭头不起作用。 Also, you cant close the lightbox by clicking somewhere on the overlay. 另外,您无法通过点击覆盖图上的某处来关闭灯箱。

I am really a beginner in the custom code so its possible that I just made some stupid mistake, can you help? 我真的是自定义代码的初学者,因此我可能犯了一些愚蠢的错误,您能帮上忙吗?

PAGE URL: http://test.sbweb.cz 页面网址: http : //test.sbweb.cz

When I remove the script the carousel works fine, is there any other option for the script maybe to just execute when the buttons are clicked? 当我删除脚本时,轮播工作正常,是否还有其他选项可以让脚本仅在单击按钮时执行?

I´ve finally found a solution to make elementor features work with the jquery script, I just had to delete the "src" part of the script, now everything work fine. 我终于找到了一种解决方案,以使jquery脚本可以使用elementor功能,我只需要删除脚本的“ src”部分,现在一切正常。 Probably there was the same source from elementor somewhere in the code.. 可能在代码中某处有来自elementor的相同来源。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM