本文介绍了jQuery未捕获的参考错误-未定义元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在drupal网站 https://github.com/linnett/backgroundVideo遵循他们对T的指示.
I implemented the following plugin in into a drupal website https://github.com/linnett/backgroundVideo following their instructions to the T.
我收到一个jQuery uncaught reference error: element is not defined
错误.这是我的网站.
I am receiving a jQuery uncaught reference error: element is not defined
error. This is my site.
推荐答案
变量element
应该是对您的视频元素的引用.
the variable element
is supposed to be a reference to your video element.
var element = "#TheVideoElementId";
这篇关于jQuery未捕获的参考错误-未定义元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!