如何摆脱 JQUERY APPEND 给出以下代码
给出使用 JQTOUCH 的以下代码行:
$('#customers').bind('pageAnimationEnd', function(e, info){
if (!$(this).data('loaded')) {
$('.loadingscreen').css({'display':'block'});
$(this).append($('<div> </div>').
load('/mobile/ajax/customers/ .info', function() {
$(this).parent().data('loaded', true);
$('.loadingscreen').css({'display':'none'});
}));
}
});
我怎样才能使用 .append($(' '). 它曾经是append($('loading'),但我不需要它,现在在函数中使用它似乎浪费处理时间。
这可能吗?
Given the following lines of code which is using JQTOUCH:
$('#customers').bind('pageAnimationEnd', function(e, info){
if (!$(this).data('loaded')) {
$('.loadingscreen').css({'display':'block'});
$(this).append($('<div> </div>').
load('/mobile/ajax/customers/ .info', function() {
$(this).parent().data('loaded', true);
$('.loadingscreen').css({'display':'none'});
}));
}
});
How can I get ride of the .append($(' ').
It used to be append($('loading') but I didn't need that and now it seems like a waste of processing time to have in the function.
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
变成
becomes