我想在經典的ASP VBScript頁面上實現jQuery文件上傳,我想我可能會超出我的聯盟。 (我知道我)使用jQuery文件上傳
這就是我想實現的組件:
http://blueimp.github.io/jQuery-File-Upload/basic-plus.html
我想我已經找到了如何利用它的工作原理,但如何將其落實到我的服務器。我不知道在代碼的前幾行代碼中放入了什麼代碼,它說var url。他們似乎列出了兩次主機名稱,之後還有兩個其他位置變量,我不知道如何應用。假設我的VbSCript頁面接受這個表單上傳位於:www.mysite.com/thisfolder/upload.asp我將如何將這個URL插入這些變量?
$(function() {
'use strict';
// Change this to the location of your server-side upload handler:
var url = (window.location.hostname === 'blueimp.github.io' ||
window.location.hostname === 'blueimp.github.io') ?
'//jquery-file-upload.appspot.com/' : 'server/php/',
uploadButton = $('<button/>')
.addClass('btn')
.prop('disabled', true)
.text('Processing...')
.on('click', function() {
var $this = $(this),
data = $this.data();
$this
.off('click')
.text('Abort')
.on('click', function() {
$this.remove();
data.abort();
});
data.submit().always(function() {
$this.remove();
});
});
他們在他們的示例中不使用分號,他們使用逗號。這個可以嗎? – trevoray
已更新的答案。 ','是對的。 – h0tw1r3
最後,只需跳過下面的代碼? ? '//jquery-file-upload.appspot.com/':'server/php /' – trevoray