我正在處理1個JavaScript文件和1個php文件的簡單項目。我正在嘗試使用ajax來調用一些php代碼,然後這些代碼將文本顯示在Lightbox上。我的問題是,我收到以下錯誤:PHP網絡錯誤
此錯誤指向我的PHP文件。
"NetworkError: 404 Not Found - http://localhost/folder/folder/dictionary.php"
我已經檢查(和雙重檢查)我所有的代碼,但我不知道如何解決這個錯誤。有人可以幫我嗎?我將在下面提供我的JavaScript和PHP代碼:
的JavaScript:
$(document).ready(function() {
$("#SearchField").submit(function(e) {
e.preventDefault();
// grabs all post variables in the form
var info = $(this).serialize();
$.post('dictionary.php', info, function(data) {
$('.DictionaryContentWrapper').append(data);
});
// prevent server from refreshing page
return false;
});
});
PHP:
$input = $_POST['input'];
echo $input;
目錄結構:
index.php
Widget
- **input.js**
- getURL.php
- **dictionary.php**
lightbox
- lightbox.css
- lightbox.js
什麼是你的文件叫什麼名字?什麼是目錄結構? – 2013-02-16 01:43:16
你是否在桌面上本地運行此程序,或者您是否有某個Web服務器? – j08691 2013-02-16 01:45:36
我已經提供了上面的目錄結構,我還突出了我提供代碼的文件。 – JaPerk14 2013-02-16 01:46:27