我正在填充span元素中的webservice中的一些数据。我从webservices获取的数据首先添加到表中,然后在Span元素中添加该表。该表最初是在Span元素中添加的,但是在加载之后它肯定会消失。在我给出的代码片段下面是Span元素给出了期望的结果,直到'第二个警告',但之后它就消失了。
$.ajax({
cache: false,
type: "GET",
async: false,
url: GetAStudent + "(" + nextStudentID + ")",
dataType: "json",
success: function (student) {
jPendingStudent = student;
nextStudentID++;
//debugger;
var table = makeTable(student);
$("#spanStudentList").html("").append(table);
alert("span 1 created");
//$("#divNewStudent").css("visibility", "visible");
//$("#divNewStudent").visible();
$("#divNewStudent").show();
alert("span2 created");
//return false;
},