日期:2014-05-19  浏览次数:20600 次

include文件内容会不会随表单提交到同一个action
     <tr>
          <td class="td_label" width=80>
            商品分类
          </td>
          <td class="td_content" width=320>
        <%@ include file="selectmenu.html" %>
          </td>
        </tr>

在页面中 我include了一个公共类的html文件。这是一个三级关联的select标签。我如果在include他的这个页面提交到action中 action会不会得到  <%@ include file="selectmenu.html" %>内容?
------最佳解决方案--------------------
感觉是会的,可以试一下。 include 的html 中只可以用<form></form>之间的元素
------其他解决方案--------------------
这个 肯定可以,我做过 分页 用include 导入 ,no problem~~
------其他解决方案--------------------
这个action肯定会得到的。
------其他解决方案--------------------
可以得到的! 你试试就知道了嘛?
------其他解决方案--------------------
include进来的模块中只要含有表单元素就应该会被提交。