Is it possible to specify a port in a ajax call

前端 未结 2 821
挽巷
挽巷 2020-12-11 06:18

I\'m trying to use jQuery to run an AJAX query on a specific port:

$(document).ready(function() {
        $.ajax({
        url: \"http://test_serve:666/test.         


        
相关标签:
2条回答
  • 2020-12-11 07:16

    is the webpage you use that is on the same port ?

    If not you would run into the same origin policy and it won't work.

    0 讨论(0)
  • 2020-12-11 07:17

    It doesn't work due the Same origin policy. AJAX requests are allowed only in the same domain, protocol and port.

    If you really need to get data from that source, you should look forward to JSONP.

    0 讨论(0)
提交回复
热议问题