Absolute (full) URLs without “http:” in HTML href

爷,独闯天下 提交于 2019-11-30 21:47:26

问题


I have been seeing this a lot lately and I am unable to find any information on it.

Is there a name for it?
Which browsers support this?


回答1:


It's the same as an absolute URL except that the schema will be the one used for the base URL. Thus, if you say //mysite.com/images/img.png on an https page, the image will be loaded with https and on an "ordinary" http page it will be loaded using the http schema (and, respectively, different default ports.)

This approach lets avoid the security warnings from browsers in the case when you have insecure content loaded by secure pages (and the pages can be loaded using both http and https protocols).



来源:https://stackoverflow.com/questions/11036551/absolute-full-urls-without-http-in-html-href

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!