0

我正在尝试使用 Javascript/AJAX 将选定单选按钮的值放入 PHP 会话变量中。一切正常,除了页面刷新。有什么办法不刷新页面吗?

的HTML:

<input type="radio" name="shipping_method" value="Standard"> Standard<br>
<input type="radio" name="shipping_method" value="2-day"> 2-Day Air&#42<br>
<input type="radio" name="shipping_method" value="Overnight"> Overnight<br>

Javascript/AJAX(注释掉了一些警报):

<script>
$(document).ready(function() {
    $("input[name=shipping_method]").on('change', function(){
         var shipping_method  = $('input:radio[name=shipping_method]:checked').val();
/*                          alert (shipping_method); */
    $.ajax ({
        type: "GET",
        url: ajax/shipping_method.php?shipping_method="+shipping_method,
            success : function(data){
/*                      alert(data);   */      
        },
                    error : function(XMLHttpRequest, textStatus, errorThrown) {
                    alert("problem: " + errorThrown);
            } 
    });
    });
});

shipping_method.php:

<?php session_start(); ?>
<?php
        $shipping_method = $_GET['shipping_method'];
        $_SESSION['shipping_method'] = $shipping_method;
?>
4

2 回答 2

0

使用 event.preventDefault(); 应该解决你的问题。

于 2013-02-11T21:26:03.973 回答
0

不知道为什么会发生,但请尝试阻止默认操作。将部分代码更改为:

$("input[name=shipping_method]").on('change', function(e){
e.preventDefault();
于 2013-02-11T21:03:13.833 回答