将值传递给PHP

时间:2012-11-14 17:36:12

标签: php ajax jquery

我需要将一个变量$option传递给php脚本。 $option位于名为“option”的隐藏字段上。

基本上,用户有一些可以通过使用诸如拖拽和放大器之类的东西重新排列的项目。下降。这些项目存储在一个数组中,一旦项目重新排列,数组就会重新排序并保存。

get_option($option);更改为get_option('myoption');我必须从隐藏字段中获取$option,才能解决问题。

我花了很多时间在网上搜索一个没有希望的例子,解决方案和教程,这对我来说太过分了。

            array_walk($_POST['order'], 'strip_text_menu_editor');
            $order_array = $_POST['order'];
            $current_menu = get_option($option);    
            $new_order = array();
            foreach($order_array as $order) {
                foreach($current_menu as $key => $value) {
                    if($order == $key) {
                        $new_order[] = $value;
                    }
                }
            }
            update_option($option, $new_order);
            echo '<script type="text/javascript" >
            jQuery(document).ready(function($) {
            var i = 0';
            echo "jQuery('#sortable li').each(function(){
                    var name = 'listItem_' + i;
                    i++;
                });
            });
            </script>";
            die(true);

的jQuery

            jQuery(document).ready(function(jQuery) {
                jQuery('#sortable li:odd').addClass('stripe');
                jQuery('#sortable').sortable({
                    handle : '.handle', 
                    update: function(event, ui) {
                        jQuery('#sortable li').removeClass('stripe');
                        jQuery('#sortable li:odd').addClass('stripe');
                        var order = jQuery('#sortable').sortable('toArray');
                        var data = {
                            action: 'menu_editor_special_action',
                            order: order,
                        };
                        jQuery.post(ajaxurl, data, function(response){
                            jQuery('#response').html('Got this from the server: ' + response);
                        });
                    }
                });
            });

HTML

<ul>
<li id="listItem_0" class="">Item A</li>
<li id="listItem_1" class="stripe">Item B</li>
<li id="listItem_2" class="">Item C</li>
<li id="listItem_3" class="stripe">Item D</li>
<li id="listItem_4" class="">Item E</li>
<li id="listItem_5" class="stripe">Item F</li>
</ul>

调用PHP脚本

function strip_text_menu_editor(&$value, $key) {
        $value = str_replace('listItem_', '', $value);
    }

1 个答案:

答案 0 :(得分:3)

从我所看到的你发布的jQuery片段中,你需要将“option”值添加到帖子中的数据数组中。

var data = {
    action: 'menu_editor_special_action',
    order: order,
    option: $('input[name=option]').val(),  //This part is new
};
jQuery.post(ajaxurl, data, function(response){
    jQuery('#response').html('Got this from the server: ' + response);
});

当然我不知道你在'选项'中存储了什么类型的数据,我不知道你的get_option()等功能在做什么,知道你需要如何为你的服务器发送它要理解的代码,但这应该让你开始。