将json通过ajax发布到邮件中

时间:2014-09-01 16:26:53

标签: jquery ajax json email post

这是我的代码。这很完美。但我很困惑如何将此表单发布到PHP邮件功能。 的的Ajax

 <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
    $.fn.serializeObject = function()
    {
        var o = {};
        var a = this.serializeArray();
        $.each(a, function() {
            if (o[this.name] !== undefined) {
                if (!o[this.name].push) {
                    o[this.name] = [o[this.name]];
                }
                o[this.name].push(this.value || '');
            } else {
                o[this.name] = this.value || '';
            }
        });
        return o;
    };

    $(function() {
        $('form').submit(function() {
            $('#result').text(JSON.stringify($('form').serializeObject()));
            return false;
        });
    });
    </script>

请帮助我.....我会感谢你

帮我处理代码表格在FIDDLE

0 个答案:

没有答案