ตัวอย่างเช่น Google Analytics ใช้ document.location.protocol ในสำเร็จรูปเพื่อติดตาม:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
แทน
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = '//www.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
ssl โดเมนย่อยเป็นอาร์กิวเมนต์ปิดเสียงเนื่องจากhttps://www.google-analytics.com/ga.jsทำงานได้ดีอย่างสมบูรณ์
การรู้จัก Google สิ่งนี้น่าจะไม่ใช่การกำกับดูแล มีปัญหากับเบราว์เซอร์บางตัวที่ไม่สนับสนุน // โปรโตคอลที่ให้เกียรติการจดชวเลขหรือมีสิ่งอื่นที่ฉันขาดไปหรือไม่
แก้ไข:สิ่งนี้ไม่เพียงใช้กับ Google Analytics (ตัวอย่างโดเมนย่อยต่าง ๆ ) สิ่งเดียวกันปรากฏบนหน้าFont Loader API :
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';