网页定位问题

阅读更多
问题:一个网页显示了10道题,我看到第8道,发现它有错误,通过修改按钮进行修改,修改完后跳回刚才的显示页面,它会跳到页面顶端,我想让它跳回后显示在第8题的位置.

解决:用锚实现
显示题目列表的文件

       
                 ${question.questionId}
          ${question.questionName}
          ${question.quesOptions}
          ${question.rightKey}
          ${question.questionType}
          ${question.stateTag}
          ${question.schoolName}
          ${question.subjectName}
          ${question.quesMakeDate}
         
          置为不可用
         

          
          置为可用
         

          order=${question.questionId}">修改题目
       
       

修改的页面

    < input type="hidden" name="order" value=" ${param.order}">从URL参数中获得值
 
修改的action
String order=request.getParameter("order");
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
String toPage=basePath+"jsp/topManager/questionManage/queryQuestionResults.jsp #"+order;
     return new ModelAndView(new RedirectView(toPage));

你可能感兴趣的:(JSP)