0
我使用這個填充工具,使服務器端的事件(EventSource的)與IE瀏覽器 - https://github.com/Yaffle/EventSource在IE中使用Eventsource時如何檢查原點?
它的偉大工程,但我無法檢查的起源,像本教程建議(出於安全目的)http://www.html5rocks.com/en/tutorials/eventsource/basics/
這裏是HTML5ROCKS
source.addEventListener('message', function(e) {
if (e.origin != 'http://example.com') {
alert('Origin was not http://example.com');
return;
}
...
}, false);
代碼是否有一種方法來設置和檢查的起源,使其與IE瀏覽器?