我想根据网址
使用javascript更改iframe的大小我的意思是如果网址是:
mywebpage.com/example.html?width=(value1)&height=(value2)
iframe是
<iframe width="(value1)" height="(value2)" scrolling="no" frameborder="0" allowtransparency="true" marginwidth="0" marginheight="0" src="http://mips.tv/embedplayer/test121/1/(value1)/(value2)"></iframe>
我在这里有一个例子,但它现在使用iframe的
答案 0 :(得分:0)
试
var query = location.search.split('&');
var splitQuery = {};
for(var x in query)
{
var t = query[x].split('=');
splitQuery[t[0]] = t[1];
}
从那里寻找你想要的东西。如果宽度和高度是数字,那么您应该没有问题。