uploadify請求當前jsp頁面所在的位址

2021-06-18 22:51:56 字數 564 閱讀 3107

最近在用uploadify外掛程式時發現,uploadify初始化時自動會向伺服器請求一次,請求的位址是當前jsp頁面所在的位址,導致後台報錯,找了找資料,解決辦法如下:

將jquery.uploadify.js中的下面**:

this.settings.upload_url = swfupload.completeurl(this.settings.upload_url);this.settings.button_image_url = swfupload.completeurl(this.settings.button_image_url)  

修改為:

this.settings.upload_url = swfupload.completeurl(this.settings.upload_url);

this.settings.button_image_url = this.settings.button_image_url ? swfupload.completeurl(this.settings.button_image_url) : this.settings.button_image_url

即可解決!

js獲得頁面當前請求位址

1,設定或獲取物件指定的檔名或路徑。alert window.location.pathname 2,設定或獲取整個 url 為字串。alert window.location.href 3,設定或獲取與 url 關聯的埠號碼。alert window.location.port 4,設定或獲取 u...

外掛程式 uploadify 傳送多餘請求的問題

使用 uploadify 上傳控制項上傳時,發現當uploadify.swf載入完成後會再次傳送乙個請求,假設當前頁的url是 http web upload test.php,那麼可以在瀏覽器中發現這個位址http web 這個請求。想要讓其不傳送這個多餘請求,解決辦法是修改對應的js,在jque...

js 獲取當前url

設定或獲取物件指定的檔名或路徑。設定或獲取整個 url 為字串。設定或獲取與 url 關聯的埠號碼。設定或獲取 url 的協議部分。設定或獲取 href 屬性中在井號 後面的分段。設定或獲取 location 或 url 的 hostname 和 port 號碼。設定或獲取 href 屬性中跟在問號...