我正在使用iframe加载外部链接并点击链接,但我们都知道iframe不会加载相同的链接或网站可以任何人建议替代方式 1.加载网址和 2.如果其中发生任何事件,我可以检测到它
下面是我使用iframe创建的代码,在下面的第一个链接将起作用,但是由于sameorigin,secon link2将无法正常工作
[remoteVideoView setVideoTrack:remoteVideoTrak];
[self.remoteVV addSubview:remoteVideoView];
$(document).ready(function() {
$("a").click(function() {
var url = $(this).attr('title');
console.log(url);
$("#siteloader").html('<iframe src="' + url + '" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:100%;width:100%;position:absolute;top:0px;left:0px;right:0px;bottom:0px" height="100%" width="100%" allowfullscreen></iframe>');
});
});