URL ajax发送但不更改网址

时间:2015-07-26 11:18:09

标签: javascript php jquery ajax

嗨,对所有人:D我有一个方法ajax for jquery的问题,我不知道发生了什么xD

我使用ajax进行确认,直到我发送网址才能正常工作

if (confirmation) {
            $.ajax({
                type: "GET",
                url: "http://localhost/Bar/index.php",
                dataType: "json",
                data: {current: current_item, disp: disp},
                success:function() {
                 alert( "Data Saved");
                }
            });
        }else{
            return false;
        }
  • 我已经尝试了

    • 缓存为false。
    • 使用dataType jason,没有它。
    • 网址相对或绝对。
    • 方法$ .get和$ .post。
    • 类型:交
    • 我删除了其他代码,只留下了ajax。

我使用检查员进行谷歌浏览,并且发送了网址,但没有更改,或者在检查员中获取了vars我得到了这个:

index.php   
styles.css  
jquery-1.9.1.js 
jquery-ui.js    
index.php?current=table_6&disp=available

但是我无法获得get而不是问题,如果我使用方法发布或获取我的网址总是index.php没有变量我只能看到检查员。

我有这个来获取var:

if($_SERVER['REQUEST_METHOD']=='GET' && isset($_GET['current'])){*/
    $pos = $_GET['current'];
    echo $pos;
}

但只给我 - 没有看到错误的反应:

 Notice: Undefined index: current in C:\wamp\www\Bar\index.php on line 4
 Call Stack
 #  Time    Memory  Function    Location
 1  0.0009  255448  {main}( )   ..\index.php:0

感谢您的任何建议,问候:D

0 个答案:

没有答案