如何用 jQuery 重写这个 javascript 函数?
function setHeight() {
var iframes = parent.document.getElementsByClassName('targetIframe');
for(var i = 0; i < iframes.length; i++)
iframes[i].height = document['body'].offsetHeight;
}
此答案的变体。
它使用 getElementsByClassName
函数,IE 不支持该函数。
如何用 jQuery 重写它?
function setHeight() {
var iframes = parent.document.getElementsByClassName('targetIframe');
for(var i = 0; i < iframes.length; i++)
iframes[i].height = document['body'].offsetHeight;
}
A variation of this answer.
It's using the getElementsByClassName
function,which is not supported by IE.
How to rewrite it with jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
.height()
看起来像这样:或者对于文字
height
属性设置:It would look like this using
.height()
:Or for the literal
height
attribute setting:只需将第一行替换为:
Just replace first line with this: