码迷,mamicode.com
首页 > 其他好文 > 详细

form表单提交文件(input file)

时间:2019-10-24 15:25:31      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:func   spl   for   ble   form   form表单   btn   code   pre   

 

包含文件上传的form表单提交,要添加属性 enctype="multipart/form-data"

 


<form method="post" id="create_form" action="" enctype="multipart/form-data">
  <table style="display: table;">
    <tr>
      <td>任务名称:</td>
      <td><input type="text" id="taskName" name="taskName" maxlength="40"></td>
    </tr>
    <tr>
      <td">操作说明:</td>
      <td><input type="file" id="instructions" name="instructions"></td>
    </tr>
    <tr>
      <td colspan=‘2‘>
        <div>
          <button type="button" id="submit-btn">提交</button>
        </div>
      </td>
    </tr>
  </table>
</form>

 

$("#submit-btn").click(
    function(e){
    $("#create_form").submit(); } )

 

form表单提交文件(input file)

标签:func   spl   for   ble   form   form表单   btn   code   pre   

原文地址:https://www.cnblogs.com/Fourteen-Y/p/11732228.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!