在php中使用ajax发布图像和文本字段

时间:2018-02-17 18:43:22

标签: ajax

这是我的表单我想在一个ajax调用中发布文本字段和图像

<form class="form-horizontal" role="form">
 <input type="text" class="form-control" id="id_edit" disabled>
 <input type="text" class="form-control" id="name_edit">
 <input type="text" class="form-control" id="job_edit">
 <input type="text" class="form-control" id="email_edit">
 <input type="text" class="form-control" id="contact_edit">
 <input type="file" class="form-control" id="profile_edit">
</form>

这是我的ajax脚本

$.ajax({
    type: 'PUT',
    url: 'team/' + id,
    data: {
    '_token': $("#token").val(),
    'id': $("#id_edit").val(),
    'name': $('#name_edit').val(),
    'job_title': $('#job_edit').val(),
    'email': $('#email_edit').val(),
    'contact': $('#contact_edit').val(),
    'profile': $('#profile_edit').val()
 }

0 个答案:

没有答案