ajax 提交图片,以及字符串,php后台接收

本文介绍了如何使用Ajax配合FormData,实现前端上传多张图片的同时,将字符串一起发送到PHP后台。PHP后台需要进行图片接收和处理。提供了具体的前端代码示例和PHP接收代码片段。
摘要由CSDN通过智能技术生成

前端网页:

<!DOCTYPE html>
<html>

	<head>
		<title></title>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<script src="js/jquery-2.1.0.js"></script>
	</head>

	<body>
		<!--最好不要超过5张,php接收文件大小的原因 -->
		<div id="picture_show"></div><br>
		<form action="pic2.php" method="post" id="form" enctype="multipart/form-data">

			<span class="file_parent">
	<!--去掉[] 单个上传 -->
    <input type="file" class="file" name="upload[]" accept="image/*"  id="upload" multiple="multiple" /><br>
	</span>     <input type="button" onclick="upload_form()" value="上传">     </form> 
		<div id="xdebug">
			</div>

	</body>
	<script>
		var formdata = new FormData();

		//清空图片
		function clearall() {
			var formdata = window.formdata;
			formdata.delete('upload[]');
		}

		//避免change事件绑定在input上失效
		$(".file_parent").on("change", "#upload"
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值