谷歌表格ajax无法正常工作

I have the following code

          $.ajax({
                cache: false,
                type: 'POST',
                dataType: 'xml',
                crossDomain: true,
                url: 'https://docs.google.com/forms/d/11wr4WCia1wxccR4LzBbWQv00jKQ4OJLfkrwtE7xu2244/formResponse',
                data: {
                    'entry.1200061771': subscriber_email
                },
                success: function () {
                    $('.subscribe-form-error').hide();
                    $('.subscribe-form')[0].reset();
                    $('.button-subscribe').val('SUBSCRIBED!');
                    mixpanel.track('Register');
                },
                error: function () {
                    $('.subscribe-form')[0].reset();
                    $('.subscribe-form-error').html('There was an error submitted the form. Please try again later.');
                    $('.subscribe-form-error').show();
                }
            });
        } else {
            $('.subscribe-form-error').html('Please input an email address.');
            $('.subscribe-form-error').show();
        }

unfortunately, when I use it I get an error: No 'Access-Control-Allow-Origin' header is present on the requested resource.

How can I fix this?