无法加载2个jquery脚本

时间:2013-05-24 12:12:56

标签: javascript jquery html

我有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>

好吧,现在关于这个问题:

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

如何解决?

1 个答案:

答案 0 :(得分:0)

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

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