indexOf("http") 在 http 和 https 上匹配

indexOf("http") matches on http and https

我有以下代码,

var protocol = jQuery('script[src*="kaltura"]').attr("src");
protocol.toLowerCase().indexOf("http");

问题是 indexOf 在 http 和 https 上匹配。我怎样才能让它在 http 上匹配?

假设您只想检查网站的协议,请检查 http://:

protocol.toLowerCase().indexOf("http://");