这是我的代码:
JS/jQuery:
function RefreshImage(){
var form_data = {
ID: $('#ID').val()
};
$.ajax({
type: "POST",
url: "submit/image.php",
data: form_data,
success: function(data) {
$('#IMG').css('backgroundImage', "url('images/+data+')");
}
});
}
HTML:
<table>
<tr>
<td background="images/default.jpg" id="IMG"></td>
</tr>
</table>
<input type="hidden" id="ID" value="4">
CSS:
#IMG{
background-color:rgba(0,0,0,0.5);
width:99px; height:99px;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
vertical-align:text-top;
}
我的代码失败了,因为它只是变成了黑色图像。但是在响应中,它显示了我请求的图像名称的确切值,但它失败了,因为它只是变成了黑色。
提前谢谢。