Are different ports on the same server considered

2019-01-06 14:14发布

问题:

Can XMLHttpRequest send a request to http:// mydomain.com:81/ from http:// mydomain.com/ ?

回答1:

For two documents to be considered to have the same origin, the protocol (http/https), the domain and the port (the default 80 or :xx) have to be indentical. So no, you cannot use xhr against a different port.