通过 AJAX 将图像加载到 jQuery Supersized 插件中

发布于 2024-12-11 17:54:38 字数 1079 浏览 1 评论 0原文

我正在尝试通过 AJAX 将图像动态加载到 jQuery“超大”图像滑块中: http://buildinternet. com/project/supersized/

AJAX 调用很好地替换了图像,但播放按钮随后变得无响应,并且后续调用会扰乱幻灯片间隔计时(幻灯片更改得更快)。

我已经尝试了类似问题中提供的所有答案(没有运气)此处< /a> (相同的代码)。他们认为这可能是一个具有约束力的问题。

所以在html:

<a href="javascript:brown();">Doeet</a>

Ajax中调用:

function red(){
  $.ajax({
  url: 'ajax.php?action=brown',
  success: function(data){
  $('#script').html(data);
  }
  })
}

Ajax.php:

<?php switch($_GET["action"]){
  case "brown":
  echo "<script type='text/javascript'>
  jQuery(function($){
    $('#supersized').html('');
        $.supersized({          
            slides : [{image : 'image1.jpg'},
                       {image : 'image2.jpg'}]

            });     
    });</script>";
   break; }
?>

I'm trying to dynamically load images via AJAX into the jQuery "Supersized" image slider: http://buildinternet.com/project/supersized/

The AJAX call replaces the images fine, but the play button then becomes unresponsive, and subsequent calls disturb the slide interval timings (slides change faster).

I've tried all the answers (without luck) provided in a similar question here (same code). They suggested it could be a binding issue.

So in the html:

<a href="javascript:brown();">Doeet</a>

Ajax call:

function red(){
  $.ajax({
  url: 'ajax.php?action=brown',
  success: function(data){
  $('#script').html(data);
  }
  })
}

Ajax.php:

<?php switch($_GET["action"]){
  case "brown":
  echo "<script type='text/javascript'>
  jQuery(function($){
    $('#supersized').html('');
        $.supersized({          
            slides : [{image : 'image1.jpg'},
                       {image : 'image2.jpg'}]

            });     
    });</script>";
   break; }
?>

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

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

发布评论

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

评论(1

随心而道 2024-12-18 17:54:38

不要尝试传递整个 javascript 代码来传输。仅传输您需要的参数:

function red(){
  $.ajax({
    url: 'ajax.php?action=brown',
    success: function(data){
      if (data != "") {
        $('#supersized').html('');
        $.supersized({          
          slides : [{image : data}],
          ....
        });   
      }
    }
  })
}

php:

<?php 
switch($_GET["action"]){
    case "brown":
    echo "imagename.jpg";
    break; 
}
?>

并且可以使用

do not try to pass the entire javascript code to transmit. only transmit the params u need:

function red(){
  $.ajax({
    url: 'ajax.php?action=brown',
    success: function(data){
      if (data != "") {
        $('#supersized').html('');
        $.supersized({          
          slides : [{image : data}],
          ....
        });   
      }
    }
  })
}

php:

<?php 
switch($_GET["action"]){
    case "brown":
    echo "imagename.jpg";
    break; 
}
?>

and may use

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