jQuery Cycle 适用于独立页面,但不适用于 WordPress
这没有任何意义。我在 WP 中使用 jQuery 循环作为特色图像滑块,但它已停止工作。
为了尝试诊断出了什么问题,我制作了其中一个示例的简化版本,并且它有效: http://concoke .info/slide.php
但是,如果我采用完全相同的标记并将其复制到我的 WordPress 页面之一,则该插件将无法工作:http://concoke.info/cycle/
这是我的 WP 标头中的声明:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://convoke.info/wp-content/themes/convoke2theme/style.css" />
<!-- include jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<!-- include Cycle plugin -->
<script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#featuredslider').cycle({
fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});
</script>
</head>
这是我有图像的地方:
<div id="featuredslider">
<img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
<img src="http://cloud.github.com/downloads/malsup/cycle/beach2.jpg" width="200" height="200" />
</div>
我关于为什么会发生这种情况的唯一想法是只是一个疯狂的猜测,但我最近将相关网站 (Convoke.info)恢复为单个网站。它曾经是 MU 或站点网络。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WordPress 中的 jQuery 在无冲突模式下运行。改用:
jQuery in WordPress runs in no conflict mode. Use instead: