我正在尝试从这个小 API 调用 SC.Widget 函数:http: //developers.soundcloud.com/docs/api/html5-widget,但我在 Chrome 检查器中收到此错误消息,我被困在那里。
不安全的 JavaScript 尝试从带有 URL 的框架访问带有 URL
file://localhost/Users/maxwell/Desktop/test/test.html
的框架
http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F67825032&auto_play=false&show_artwork=true&color=ff7700
.请求访问的帧具有“http”协议,被访问的帧具有“文件”协议。协议必须匹配。
<body>
<iframe id="soundcloud" width="100%" height="166" scrolling="no" frameborder="no"
src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F67825032&auto_play=false&show_artwork=true&color=ff7700"></iframe>
<script>
Soundcloud();
</script>
</body>
function Soundcloud() {
var widget1 = SC.Widget(iframeElement.soundcloud);
alert("widget1");
}
我知道这样做是出于安全原因,但是如果我无法访问框架,如何修改 SoundCloud 小部件?
谢谢你的帮忙!