$.get

                $('#choice').change(function()
                {
                    if($(this).val() != '')
                    {
                        $.get(
                            'data.php', 
                            { what: $(this).val() },
                            function(data)
                            {
                                $('#result').html(data);
                            });
                    }
                });
原文地址:https://www.cnblogs.com/krisy/p/3687470.html