css() 与appendTo() 不适用
$('#item').click(function() {
$.ajax({
url: 'server.php',
type: 'POST',
data : {temp : 'aValue'},
success: function(data) {
$(data).css('color', 'red').appendTo('#item');
}
});
});
问题就在这里:
$(data).css('color', 'red').appendTo('#item');
虽然它确实获取数据并且与appendTo()配合得很好,但css部分不适用
$('#item').click(function() {
$.ajax({
url: 'server.php',
type: 'POST',
data : {temp : 'aValue'},
success: function(data) {
$(data).css('color', 'red').appendTo('#item');
}
});
});
The problem is here :
$(data).css('color', 'red').appendTo('#item');
while it does takes the data and works well with the appendTo() the css part is not applicable
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
而不是
尝试
Instead of
try
因为数据是一个字符串,而不是一个 html 元素,因此它不是 css 的。
Because data is a string, not an html element, thus why it's not css'd.