html页面代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312">
<title>Insert title here</title>
<link rel="stylesheet" type="text/css" href="js/resources/css/ext-all.css"/>
<script type="text/javascript" src="js/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="js/ext-all.js"></script>
<script type="text/javascript" src="js/ext-all-debug.js"></script></head>
<body> <script type="text/javascript">
Ext.onReady(function(){
Ext.QuickTips.init();
Ext.form.Field.prototype.msgTarget = "side";
var dateForm = new Ext.form.FormPanel({

title :"Verify",
labelSeparator : ":",
labelWidth :100,
bodyStyle :"padding: 5 5 5 5",
frame : true,
height :300,
width :300,
applyTo :"form",
items :[
new Ext.form.TextField({
fieldLabel : "Product Name",
name :"pricename",
width : 150,
value : "U盘"
}),
new Ext.form.NumberField({
fieldLabel: "Price",
name :"price",
width :150,
value :100
}),
new Ext.form.DateField({

fieldLabel :"生产日期" ,
format :"Y年m月d日",
width :150,
name :"date",
value :new Date()
}),
new Ext.form.TextArea({
fieldLabel :"产品简介",
id :"instruction",
name :"instruction",
width :150
})
],
buttons:[
         new Ext.Button({
text :"加载",
handler :loadCallBack
     })
  ]
}); function loadCallBook(){ productForm.form.load({
waitMsg : "Loading",
waitTitle :"Clip",
url :"productServer.jsp",
method :"GET",
success:function(form,action){
Ext.Msg.alert("clip","Load Success");
},
failure :function(form,action){
Ext.Msg.alert("clip","Load Failed"+action.failureType);
}
});
}
});
</script>

<div id='form' style="border:1px solid #FF0000"></div>  </body>
</html>
productServer.jsp代码如下:<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
    
<%
    String msg = "{success:true,data:{introduction:'本产品美观实用,售后服务优秀'}}"; 
response.getWriter().write(msg);
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
</body>
</html>html页面和JSp页面在同一目录下为什么运行不出结果来 ,还请高手指点。