我需要在jQuery中动态创建HTML表单,当我单击提交按钮时,我将表单数据通过Ajax发送到" add_sw.php'这是处理它们。
但我的问题是这个PHP脚本无法访问PHP $ _FILES变量,因此它是空的。
这是js相关的js代码:
<script type="text/javascript">
$("body").on("click", "#submit", function() {
var frm = $('#sw_add');
frm.submit(function (ev) {
$.ajax({
type: frm.attr('method'),
url: frm.attr('action'),
data: frm.serialize(),
success: function (data) {
alert('ok');
}
});
ev.preventDefault();
});
});
</script>
<script type="text/javascript">
$("body").on("change", "select", function() {
var tag = $("<div></div>");
var content = "<form id='sw_add' action='add_sw.php' method='post' enctype='multipart/form-data'>";
content += "<input type='text' name='sw_name'>";
content += "<label for='file'>Fájl:</label>";
content += "<input type='file' name='file' size='40'>";
content += "<textarea rows='4' cols='50' name='sw_comment'></textarea>";
content += "<div class='buttons'><button id='submit' type='submit'>Save</button></div>";
content += "</form>";
tag.html(content).dialog({title:'Add new software', modal:false, width:500, height:360}).dialog('open');
});
</script>
开始PHP脚本:
<?php
$sw_name = $_REQUEST['sw_name'];
$sw_file = $_FILES['file']['name'];
$sw_comment = $_REQUEST['sw_comment'];
// process the form datas...
?>
我的问题是&#39; $ sw_file&#39;变量为空,我没有得到上传的文件名。为什么呢?
答案 0 :(得分:1)
答案 1 :(得分:1)
我修改了第一个js脚本,这是一个工作版本。
<script type="text/javascript">
$("body").on("click", "#submit", function() {
$("#sw_add").submit(function(e) {
var formObj = $(this);
var formURL = formObj.attr("action");
var formData = new FormData(this);
$.ajax({
url: formURL,
type: 'POST',
data: formData,
mimeType: "multipart/form-data",
contentType: false,
cache: false,
processData: false,
success: function(data, textStatus, jqXHR) {
alert('ok');
},
error: function(jqXHR, textStatus, errorThrown) {
alert('error');
}
});
e.preventDefault();
e.unbind();
});
});
</script>