我在点击新闻标题时,要让他跳出新闻内容,但是总是跳出所有标题里的内容这是怎么回事? 不能一对一的对齐。 
这是我要点击新闻标题的部分代码: 
    <logic:present name="newsList"> 
                    <logic:iterate id="mer" name="newsList" type="com.shop.orm.News"> 
                      <TR> 
                        <TD class="text">&nbsp; <img src="images/cateIcon.gif" border="0"> <a href="mer.do?method=searchNews&newsid=${mer.id}">${mer.title} </a> </TD> 
                      </TR> 
                    </logic:iterate> 
                  </logic:present> 
*************************** 
这是通过点击标题显示新闻内容的部分代码: 
<TABLE width="96%" border=0 align="center" cellPadding=0 cellSpacing=0 class="C_Goods_Title"> 
<TR> 
  <TD> <div align="center" class="STYLE1">新闻阅览 </div> </TD> 
    </TR> 
          </TABLE> 
          <table width="96%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#F7F3F7"> 
          <logic:present name="newsList"> 
<logic:iterate id="mer" name="newsList" type="com.shop.orm.News"> 
<tr valign="middle" bgcolor="#FFFFFF"> 
  
  <td class="text">${mer.content} </td> </tr> 
<tr> 
  <td colspan="4" height="2" bgcolor="#F7F3F7"> </td> 
</tr> 
</logic:iterate> 
</logic:present> 
                    </table> </td> 
      </tr> 
    </table> </td> 
********************* 
这个是action里的代码: 
public ActionForward searchNews(ActionMapping mapping, ActionForm form, 
HttpServletRequest request, HttpServletResponse response) { 
// List merList = null; 
// MerDAO service = new MerDAOImpl(); 
List newsList=null; 
NewsDAO newsdao=new NewsDAOImpl(); 
try{ 
String hql = "from News as a "; 
String hql1 = "select count(*) from News as a "; 
String action ="mer.do?method=searchNews&"; String newsid = request.getParameter("newsid"); request.setAttribute("newsid", newsid); 
hql = hql + "where a.content.id="+newsid; hql1 = hql1 + "where a.content.id="+newsid; 
action = action + "newsid="+newsid+"&"; 
request.setAttribute("action", action); 
newsList = newsdao.browseNewsTitle(); if (newsList!=null&&newsList.size()>0)request.setAttribute("newsList", newsList); }catch(Exception ex){ 
logger.info("在执行NewsAction类中的searchNews方法时出错:\n"); 
ex.printStackTrace(); 

return mapping.findForward("searchNews"); 
} 可能我这个action有错吧 ,但是我不知道应该怎么写?? 
数据库表News  字段id,title,content 
高手帮帮忙  谢谢了  在线等