使用带有变量的 jQuery .css()
我正在使用 jQuery 动态更改 div 上的背景图像。这是我的代码:
$.ajax({
url: '/countries/' + currentHash,
type: 'GET',
dataType: 'html',
complete: function(xhr, textStatus) {
//called when complete
},
success: function(data, textStatus, xhr) {
$('#info').empty();
var country_id = $('div#country_id', data).text();
$('#fancybox-outer').css('background', "#ffffff url(\"/system/backgrounds/" + country_id + "/large.jpg\") no-repeat top right");
// $('#fancybox-outer').css('background', '#ffffff url("/system/backgrounds/4/large.jpg") no-repeat top right');
$.fancybox(
$('#info').html(),
{
autoDimensions : false,
width : '800',
height : '600',
speedIn : 600,
speedOut : 200,
// scrolling : 'no',
padding : 0,
centerOnScroll : true,
overlayColor : '#333333',
overlayOpacity : 0.8,
transitionIn : 'fade', // 'elastic', 'fade' or 'none'
transitionOut : 'elastic', // 'elastic', 'fade' or 'none'
hideOnOverlayClick : false,
}
);
}
});
代码中的其他所有内容都运行良好。我实际上拿出了一些,以便您更容易阅读。它正在获取 div 中的country_id。我尝试将 Country_id 变量附加到页面上的 div 中,以确保它能够获取它并且确实如此。但这部分不起作用:
var country_id = $('div#country_id', data).text();
$('#fancybox-outer').css('background', "#ffffff url(\"/system/backgrounds/" + country_id + "/large.jpg\") no-repeat top right");
// $('#fancybox-outer').css('background', '#ffffff url("/system/backgrounds/4/large.jpg") no-repeat top right');
注释掉的部分起作用。关于我应该做什么有什么想法吗?
谢谢!
I'm using jQuery to dynamically change the background image on a div. Here's my code:
$.ajax({
url: '/countries/' + currentHash,
type: 'GET',
dataType: 'html',
complete: function(xhr, textStatus) {
//called when complete
},
success: function(data, textStatus, xhr) {
$('#info').empty();
var country_id = $('div#country_id', data).text();
$('#fancybox-outer').css('background', "#ffffff url(\"/system/backgrounds/" + country_id + "/large.jpg\") no-repeat top right");
// $('#fancybox-outer').css('background', '#ffffff url("/system/backgrounds/4/large.jpg") no-repeat top right');
$.fancybox(
$('#info').html(),
{
autoDimensions : false,
width : '800',
height : '600',
speedIn : 600,
speedOut : 200,
// scrolling : 'no',
padding : 0,
centerOnScroll : true,
overlayColor : '#333333',
overlayOpacity : 0.8,
transitionIn : 'fade', // 'elastic', 'fade' or 'none'
transitionOut : 'elastic', // 'elastic', 'fade' or 'none'
hideOnOverlayClick : false,
}
);
}
});
Everything else is working great in the code. I actually took some out so that it's easier for your to read. It's getting the country_id within the div. I've tried appending the country_id variable into a div on the page to make sure that it's getting it and it is. But this part just isn't working:
var country_id = $('div#country_id', data).text();
$('#fancybox-outer').css('background', "#ffffff url(\"/system/backgrounds/" + country_id + "/large.jpg\") no-repeat top right");
// $('#fancybox-outer').css('background', '#ffffff url("/system/backgrounds/4/large.jpg") no-repeat top right');
The commented out part works. Any thoughts on what I should do?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试像这样修改引号:
您可能还需要确保country_id不包含任何空格
Try modifying the quotes like this:
You may also need to make sure that country_id doesn't contain any whitespace