Flowplayer jQuery 工具在 IE 7/8 中无法运行

发布于 2024-12-06 07:31:53 字数 306 浏览 1 评论 0原文

我注意到最近出现的一个有关 Flowplayer 的 jQuery 工具的问题,该工具似乎无法在 IE 7/8 中运行。请参考此处。在 Safari/Firefox/IE9 中运行良好 - 直到最近才在 IE7/8 中运行。有谁知道 jQuery1.6 和 jQueryTools 1.2.5 之间的冲突可能导致此问题?非常感谢任何反馈和建议。

I've noticed an issue which has recently cropped up regarding Flowplayer's jQuery Tools, which do not appear to be functioning in IE 7/8. Please reference here. Works great in Safari/Firefox/IE9, - and was in IE7/8 until recently. Is anyone aware of a conflict between jQuery1.6 and jQueryTools 1.2.5 which might be causing this issue? Any feedback and suggestions is greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ζ澈沫 2024-12-13 07:31:53

您可以从修复这一行上的 javascript 语法错误开始:

<script>var x=0;function sendEmail(x){document.getElementById("rep_email").value=x;document.getElementById("zip_code").value=;document.locate_rep.submit()}function sendButton(){document.email_rep.submit_email.style.width="150px";document.email_rep.submit_email.value="Sending...Please Wait"}$(document).ready(function(){$("input").each(function(){$(this).data("placeholder",$(this).val())});$("input").live("focus",function(){if($(this).val()==$(this).data("placeholder")){$(this).val('')}});$("input").live("blur",function(){if(!$(this).val().length){$(this).val($(this).data("placeholder"))}})});</script>    </div>

该行的这一部分显然缺少作业的右侧部分:

document.getElementById("zip_code").value=;

除此之外,您能告诉我们页面上的哪些功能不起作用并给出我们知道哪些代码可能与该功能相关?请记住,我们不了解您的页面,因此甚至不知道流程播放器在您页面上的位置或其他可能无法正常工作的地方。

You can start by fixing the javascript syntax error on this line:

<script>var x=0;function sendEmail(x){document.getElementById("rep_email").value=x;document.getElementById("zip_code").value=;document.locate_rep.submit()}function sendButton(){document.email_rep.submit_email.style.width="150px";document.email_rep.submit_email.value="Sending...Please Wait"}$(document).ready(function(){$("input").each(function(){$(this).data("placeholder",$(this).val())});$("input").live("focus",function(){if($(this).val()==$(this).data("placeholder")){$(this).val('')}});$("input").live("blur",function(){if(!$(this).val().length){$(this).val($(this).data("placeholder"))}})});</script>    </div>

It's this part of that line which is obviously missing the right-hand part of the assignment:

document.getElementById("zip_code").value=;

Beyond that, can you tell us what functionality on the page isn't working and give us some idea what code might be related to that feature? Please remember that we don't know your page so don't even have an idea where the flow player is on your page or what else might not be working.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文