摘要:
var xhr=false; function CreateXHR(){ try{ //检查能否用activexobject xhr=new ActiveXObject("msxml2.XMLHTTP"); }catch(e1){ try{ //检查能否用activexobject xhr=new 阅读全文
摘要:
1 如果一个action实现了preparable接口,则prepare拦截器会在执行execute方法之前先执行prepare()方法 2 timer 拦截器的功能是输出调用Action所需要的时间,它记录了execute方法和在timer后面定义的其他拦截器的intercept方法执行时间之和, 阅读全文