How Come a CDN or External JavaScript File works in a Web Site?

前端 未结 1 1698
失恋的感觉
失恋的感觉 2021-02-02 14:12

First off, I\'m embarassed that I don\'t know this. I know these things work, but just not sure why. There is something I still don\'t get about CDNs and stuff like Google Analy

1条回答
  •  猫巷女王i
    2021-02-02 15:01

    You're misunderstanding these policies.

    SOP prevents a page (such as in a frame) from interacting with a page from a different domain, or from reading a resource (AJAX request) in a different domain.

    There is nothing wrong with a script from a different domain executing in your page, as long as you explicitly load it. (that's how JSONP works) However, you can't read the script's source, since that's a resource from a different domain.

    Browser security restrictions are based on the source of the page executing the code, not the site that a particular

提交回复
热议问题