通过 AJAX 将图像加载到 jQuery Supersized 插件中
我正在尝试通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要尝试传递整个 javascript 代码来传输。仅传输您需要的参数:
php:
并且可以使用
do not try to pass the entire javascript code to transmit. only transmit the params u need:
php:
and may use