使用jQuery在表单提交(post)之前取消设置php变量

时间:2014-04-09 05:45:56

标签: php jquery ajax forms unset

我有两个变量$get_book_id$_GET['book_id']以及一个发布其他数据的表单。单击提交按钮时,我想清空上述两个变量,并使用表单发布剩余的值。

jquery代码看起来像这样。

的index.php

    $('#submit_button').click(function(){
                $.ajax({
                type: 'POST',
                url: 'empty_variable.php',
                success: function(data) { 
                },
                error: function(ts) { alert(ts.responseText) }
            });
    });

    <form action="process.php" method="post">

            .................

    </form>

empty_variable.php

    <?php
    $get_book_id = '';
    $_GET['book_id'] = '';
    ?>

process.php

<?php 
echo $_GET['book_id'];
echo $get_book_id;
print_r($_POST);    
?>

我想要做的是,在表单提交上使用jQuery清空两个变量。我怎么能这样做?
在流程页面中,我仍然会看到$_GET值和$get_book_id

请不要让我清空index.php页面中的值。

使用jQuery

在表单提交(发布)之前取消设置php变量

由于

Kimz

2 个答案:

答案 0 :(得分:1)

更新了答案,使用发布请求,如果字段为空,则将变量设置为空白:

将提交输入更改为如下按钮: 的index.php

<script type="text/javascript">
    $(document).ready(function() {
         $('#submit_button').on('click', function(e) {
              $('#book_id').val('');
              $(this).submit();                     
         });
    });                       
</script>
<form id="form_id" action="process.php" method="POST">
    <input id="book_id" name="book_id" type="text" />
    <button id="submit_button">Submit</button>
</form>

process.php

if($_POST['book_id'] = '') $get_book_id = $_POST['book_id'];
echo $_POST['book_id'];
echo $get_book_id;
print_r($_POST);

答案 1 :(得分:0)

试试这种方式

 $('#submit_button').click(function(){
            $.ajax({
            type: 'POST',
            data:{"clearBit":"YES"},  //use the data to refresh the specified variables on process.php page
            url: 'empty_variable.php',
            success: function(data) { 
            },
            error: function(ts) { alert(ts.responseText) }
        });
});

<强> Process.php:

 <?php
   if(isset($_POST['clearBit']) && $_POST['clearBit']=='YES')
   {
     $get_book_id = '';
     $_GET['book_id'] = '';
   }    
?>

快乐编码:)