jquery ajax readystate 0 état de responsetext 0 erreur de statut

J'obtiens l'erreur suivante: jquery ajax readystate 0 responsetext status 0 statustext error lorsque le donner: url(http://www.tutorialspoint.com/prototype/prototype_ajax_response.htm)cependant, il fonctionne très bien quand je lui donne url(localhost:""/embparse_page) sur mon localhost.

J'ai essayé d'utiliser les en-têtes que j'ai trouvé sur une recherche Google, et j'ai utilisé beforeSend:"" trop, mais ça ne marche toujours pas.

Je pense que le principal problème est: XMLHttpRequest cannot load http://www.tutorialspoint.com/prototype/prototype_ajax_response.htm. Origin "local server" is not allowed by Access-Control-Allow-Origin. mais je ne la comprends pas.

Quelqu'un peut-il expliquer le problème pour moi, comme je suis assez nouveau dans ce.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:ng="http://angularjs.org">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta Access-Control-Allow-Origin="*" />
    <title>Page Parsing</title>
    <script type="text/javascript" src="/js/jquery-1.9.1.min.js"></script>
    <script>
    getit=function(){
        jQuery.support.cors = true;
        $.ajax({
            type:"GET",
            url:"http://www.tutorialspoint.com/prototype/prototype_ajax_response.htm",
            dataType:"html",
            crossDomain:true,
            beforeSend: function(xhr) {
                xhr.overrideMimeType('text/plain;charset=UTF-8');
            },
            success:function(XMLHttpRequest,jqXHR ,data) {
                //alert(data.title);
                var starttitl=data.lastIndexOf('<title>');
                var endtitl=data.lastIndexOf('</title>');
                var title1=data.substring(starttitl+7,endtitl);
                alert(title1);
            },
            error:function(errorStatus,xhr) {
                alert("Error"+JSON.stringify(errorStatus));
            }
        });
    }   
    </script>
</head>
<body>
    <div id="siteloader">
        <input type="button" onclick="getit()" />
    </div>
</body>
</html>

source d'informationauteur Dhirender Tyagi