有時候頁面的 js 無法執行的原因
[blocked] The page at xxx ran insecure content from http://xxx.js
很有可能的原因是, 該頁是 https, 但上面報錯的 js 試圖進行一個 http request (不論是檔案或是 ajax ), 要解決此問題, 可能的方法步驟是 1. 讓被請求網域支援 https 2. 將 request 改為 protocal relative 的樣式, 例如: http://www.test.com --> //www.test.com
很有可能的原因是, 該頁是 https, 但上面報錯的 js 試圖進行一個 http request (不論是檔案或是 ajax ), 要解決此問題, 可能的方法步驟是 1. 讓被請求網域支援 https 2. 將 request 改為 protocal relative 的樣式, 例如: http://www.test.com --> //www.test.com
留言
張貼留言