[搬家文]有關jsp代碼未被解析的離奇問題

來源:互聯網
上載者:User

今天碰到一個非常離奇的問題

下面這段代碼中的紅色部分,是定義了一個按鈕

 

<logic:notEmpty name="labExamineForm" property="examineResultList">
     <% int rowCount = 0; %>
     <logic:iterate id="result" name="labExamineForm" property="examineResultList">
     <tr bgcolor="#F3FBFF" id="RESULT_TABLE<%=rowCount%>">
      <td>
       <div align='center'>&nbsp;<bean:write name ="result" property="name"/></div>
      </td>
      <td>
       <div align='center'>&nbsp;<bean:write name ="result" property="item"/></div>
      </td>
      <td>
       <div align='center'>&nbsp;<bean:write name ="result" property="result"/></div>
      </td>
      <td>
       <div align='center'>&nbsp;<html:button property="delButton" value="刪除" onclick=" delRow('RESULT_TABLE<%=rowCount %>')"/></div>
      </td>
     </tr>
     <%rowCount++; %>
     </logic:iterate> 
     </logic:notEmpty>        


 

其中有一段jsp的取值語句(橙色部分)

但是每次在訪問這個頁面的時候,這個<%=rowCount %>始終沒被解析,以至於在頁面源檔案中紅色這段的html代碼是這樣的(<%=rowCount %>')"直接在源檔案裡面出現了)

<input type="button" name="delButton" value="刪除" onclick=" delRow('RESULT_TABLE<%=rowCount %>')"/>

嘗試各種方法無果,突然想到一點,<html:button 這種struts標籤是要經過伺服器的再次翻譯的,會不會因為這個出了問題

於是將將紅字部分改為 <input type="button"

終於正常工作,頁面源檔案中紅字部分被正確解析為

<input type="button" name="delButton" value="刪除" onclick=" delRow('RESULT_TABLE0')"/>

這個問題以前沒有碰到過,不知道是否屬於bug。

以上得到一點,在有jsp代碼加入的地方,盡量不用struts標籤

 

 

<input type="button" name="delButton" value="刪除" onclick=" delRow('RESULT_TABLE<%=rowCount %>')"/>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.