85. }
86. }else{
87. alert(exception.message);
88. }
89. }
90. // 返回JavaBean处理
91. function showUser(user,exception){
92. if(exception==null){
93. if(user!=null){
94. update(user);
95. }else{
96. alert("no result");
97. }
98. }else{
99. alert(exception.message);
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115. } } // 更新表格 function update(user){ var table=document.getElementById("userTable"); // 在表格末尾插入一行 table.insertRow(-1); // 获取当前表格的行数 var rows=table.rows.length; // 在插入的一行插入7列 table.rows[rows-1].insertCell(-1); table.rows[rows-1].insertCell(-1); table.rows[rows-1].insertCell(-1); table.rows[rows-1].insertCell(-1); table.rows[rows-1].insertCell(-1); table.rows[rows-1].insertCell(-1);