(1).使用<script>构造的request请求可以解决跨域的问题,而使用ifame也可以构造请求不过有时浏览器不支持iframe的跨域访问,所以大家在使用的时候就要根据自己的实际情况去选择应该使用那一种了
try{
varscript_el=document.createElement("script");
script_el.type="text/javascript";
script_el.src="http://www.baidu.com";
h=document.getElementsByTagName("head")[0];
h.appendChild(script_el);
}
catch(e){
alert(e);
}
(2).其实原理是一样的,只是换一种方式来写罢了
document.write('<scripttype="text\/javascript"src="http://www.baidu.com?"'+Math.random()+'><\/script>');