0
我在想如何才能將一個.csv文件從HTML文件輸入容器發送到另一個.jp文件.php文件。通過ajax發送一個.csv文件到PHP文件的問題
這裏是我的代碼:
$(document).ready(function() {
$(".Rsubmit").click(function() {
?????What would I declare to contain the .csv file?
var checkurl = './CSVRemove/getAccountsCSV.php';
runCSVcheck(checkurl);
});
});
function runCSVcheck(checkurl)
{
$.ajax({
type: "POST",
//dataType: "json",
url: checkurl,
data:
{
???? what would I put here?
},
success: function(response) {
code....
});
}
HTML:
Input boxes.....
<span>Enter .csv File: </span><input type="file" name="file" value="" />
請讓我知道,如果有一個解決方案!
大衛