<s:file name="file"></s:file> 这个一次只能一次选中一次上传图片
要是想上传多张图片就要用多个这个标签  但是这样不好看 也不知道别人要上传几张的 怎么用这么一个标签 上传多张图片呢
要是有案例能不能发我 邮箱 [email protected] 谢谢

解决方案 »

  1.   

    http://blog.csdn.net/ncowboy/article/details/4061610
    这个应该可以吧!swf上传组件
      

  2.   

    在你的页面上用js就可以控制一下就可以了
    js代码:<script type="text/javascript">
    function add() {
     $("#fileDiv").append($("<div>文件:<input type='file'/><input type='button' value='删除' onclick='removeButton(this);'/></div>"));
    }
    function removeButton(obj) {
    `$(obj).parent("div").remove();
    }</script>jsp文件:
    <body>
    <input type="button" onclick="add();" value="添加"/>
    <div id="fileDiv">
     文件:<s:file name="file"></s:file>
    </div>
    </body>