我有这段代码
var action = $("#action").val();
var z_product_id = $("#z_product_id").val();
var product_id = $("#product_id").val();
$.post('ajaxGetOperations.php',
{action: action, z_product_id: z_product_id, product_id: product_id},
function(data)
{
$('#respons').html(data);
$('#hand_product_id').val(product_id);
}) ;
}
我可以发送"动作"和" Z_product"和......在这一行到php页面
{action: action, z_product_id: z_product_id, product_id: product_id}
但我不知道如何将文件值发送到php页面 这可能是html代码
<table class="table table-striped table-hover">
<tr>
<td><input type='text' size="4" value='$z_product[id]' id='z_product_id' /></td>
<td>$z_product[name]</td>
<td><input type='text' size="4" value='$product[id]' id='product_id' /></td>
<td>$product[name]</td>
</tr>
<tr>
<td colspan='4'>
<div class="col-lg-6 col-sm-6 col-md-6 -col-xs-12">
<label class="" for="filebutton">ارسال عکس</label>
<input id="image" name="image" class="input-file" type="file">
</div>
</td>
</tr>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>
<button onclick='setDBInfo(this.value)' value='1' id='action'>ارسال </button>
<button onclick='setDBInfo(this.value)' value='0' id='action'>رد </button>
</td>
</tr>
</table>
实际上我无法访问php中的文件值。
答案 0 :(得分:0)
最简单的方法是将表格包装在表格中并将其发送到php页面。但是如果你不想这样做,那么你需要编写js代码来从HTML元素中获取文件值。
答案 1 :(得分:0)
试试这个
<form name="my_form">
<table class="table table-striped table-hover">
<tr>
<td><input type='text' size="4" name="z_product_id" value='$z_product[id]' id='z_product_id' /></td>
<td>$z_product[name]</td>
<td><input type='text' size="4" name="product_id" value='$product[id]' id='product_id' /></td>
<td>$product[name]</td>
</tr>
<tr>
<td colspan='4'>
<div class="col-lg-6 col-sm-6 col-md-6 -col-xs-12">
<label class="" for="filebutton">ارسال عکس</label>
<input id="image" name="image" class="input-file" type="file">
</div>
</td>
</tr>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>
<button type="submit" value='1' id='action'>ارسال </button>
<button onclick='setDBInfo(this.value)' value='0' id='action'>رد </button>
</td>
</tr>
</table>
</form>
并用此
替换您的ajax请求$("form[name='my_form']").submit(function(e) {
var formData = new FormData($(this)[0]); /* this is your data */
$.ajax({
url: "ajaxGetOperations.php",
type: "POST",
data: formData,
async: false,
success: function (data) {
$('#respons').html(data);
$('#hand_product_id').val(product_id);
},
cache: false,
contentType: false,
processData: false
});
e.preventDefault();
});
你的php中的像往常一样检索值
$p_id = $_POST['z_product_id'];
$p_id = $_FILES['image'];
简而言之,使用formData对象真的可以帮到你......