0
我有一個上傳頁面有一個看不見的輸入,當我點擊一張圖片時,我選擇了一個文件,我選擇了一個文件後,我希望javascript將該表單提交到另一個頁面但另一方面頁面$ _FILES [ '文件']是空jQuery的,PHP表單不發送發佈數據.submit()
我上傳的網頁:
形式:
<form style="visibility: hidden;" id="target" method='POST' action="otherpage.php">
<input type="file" id="file" value="Go" name="file" />
</form>
的JavaScript
function updatebillede() {
$('input[type="file"]').click();
};
$(document).ready(function() {
$('input[type="file"]').change(function() {
var $this = $(this);
if ($this.val() != '') {
$("#target").submit();
} else {
alert("Error");
}
});
});
</script>
我的其他網頁
<?php print_r($_FILES['file']); ?>
啊哇即時通訊愚蠢的,我shouldve現在知道這一點,謝謝! – lizart