0

我很难在 Wordpress 中找到不允许使用 fancybox 加载 iframe 的 jQuery 插件或其他内容。

带有剥离 html 的 Easy Fancybox 可以工作,下面是工作版本

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head>

<!-- Add jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>

<link rel='stylesheet' id='easy-fancybox.css-css'  href='http://www.wp-responsive-themes.com/wp-content/plugins/easy-fancybox/easy-fancybox.css.php?ver=1.3.4' type='text/css' media='screen' />

<script type='text/javascript' src='http://www.wp-responsive-themes.com/wp-content/plugins/easy-fancybox/fancybox/jquery.fancybox-1.3.4.pack.js?ver=1.3.4'></script>
</head>
<body>
<a href="http://wp-responsive-themes.com/"  data-fancybox-type="iframe"  title="preview" class="preview fancybox-iframe">Preview</a>
<script type="text/javascript">
jQuery(document).ready(function() {
      $("a.preview").fancybox({
           'Width'    :       960 ,
           'Height'   :       640,
           'hideOnContentClick': false, 
           'type':'iframe'
      }); 
});

</script>
</body>
</html>

但fancybox 无法在页面上加载 iframe(Wordpress)。

在以下页面单击“iPhone 5 Vertical Orientation Preview”时应该打开 iframe

http://www.wp-responsive-themes.com/2012/myapp-adaptive-wp-theme-for-app-developers-429/

需要帮忙

亲切的问候

4

1 回答 1

1

Wordpress 的设置方式使得 jQuery 可以在没有冲突的情况下使用。这意味着 $ 不容易获得。

http://codex.wordpress.org/Function_Reference/wp_enqueue_script#jQuery_noConflict_wrappers

jQuery(document).ready(function($) {
      $("a.iphone4_vertical").fancybox({
           'Width'    :       960 ,
           'Height'   :       640,
           'hideOnContentClick': false, 
           'type':'iframe'
      }); 
});

添加$as 函数参数应该可以解决您的问题。

于 2012-09-16T16:38:51.023 回答