jQuery 求页面加载等待特效,当数据加载完成效果消失,代码越少越好

2024-12-22 22:04:41
推荐回答(1个)
回答1:

呵呵这个很简单 因为jquery类库已经封装好了

$(document).ready(function() {
//没有用jquery 可以用 【eval(返回的对象)】 转化成json对象
// $("input").click(function() {
$("#content").ajaxStart(function() {
alert('a');
$("#content").html("数据加载中!!!~~~~!!"); 这里是加载等待特效
});
$.getJSON("getUserList.ashx", function(data) {

var html = "

";
$(data).each(function(index, item) {
html += ""
html += "";
html += "";
html += "";
html += ""
});
$("#content").html(html);
//ajax请求开始执行
});
});


希望对你有所帮助

" + index + "=" + item["Name"] + "" + index + "=" + item["Age"] + "" + index + "=" + item["Phone"] + "