我正在尝试使用JqueryAjax加载Div empProfTable中的Jsp页面。并且我已经这样做了,我不是这样做的正确方法。请帮忙
$.ajax({
url: "GenerateID.jsp",
type: 'post',
success: function(msg) {
$("#empProfTable").load("${pageContext.request.contextPath}/jsp/admin/AddStaff/addempdetail.jsp?Education=1&empid=" + id);
}
这是我的jsp页面
<% if(request.getParameter("Education")!=null)
{
%>
<div id="EduQual" style="margin-top: 50px;" >
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#7ce9ff">
<td width="12%"><strong>Empcode</strong></td>
<td width="10%"><strong>Education</strong></td>
</tr></table>
<% } %>
我也没有收到任何错误。提前致谢