0

我有 javascript,它会在之前从数据库中加载网站上的新帖子:

  <script type="text/javascript">
 function LoadContent() {
        patch = window.location.toString();
       if (patch!== undefined && patch=="http://i-sc.ru/" || patch=="http://i-sc.ru/index.php") {
        $.ajax({
        url: patch,
        success: function(content) {
    $('#dle-content').html($('#dle-content', content).html());
    }})}

    setTimeout("LoadContent()", 50);
    }

    </script>

      <script type="text/javascript">
      $(document).ready(function(){
LoadContent()

});
      </script>

在我为

<script type="text/javascript" src="js/jquery.fancyzoom.js"></script>

我放进去的<head>

设置:

    <script type="text/javascript">
$(function() {
  //Set the default directory to find the images needed
  //by the plugin (closebtn.png, blank.gif, loading images ....)
  $.fn.fancyzoom.defaultsOptions.imgDir='../images/'; //very important must finish with a /

  $('a.tozoom').fancyzoom({Speed:0});

  $('a').fancyzoom({overlay:0.6});

  //new rev > 1.2
  //apply fancyzoom effect on all image whose class is fancyzoom !!

  $('img.fancyzoom').fancyzoom();
});
</script>

好吧,现在关于问题:

加载网站时,由于冲突,我无法缩放图像,我想

如何解决?

4

1 回答 1

0

不要jquery.js多次引用文件,从第二个脚本中删除对文件的引用。

并确保您没有在脚本中different versions.js任何位置引用文件。

于 2013-05-24T12:19:55.743 回答