我试图从我的内部设置 div 的高度iframe
。
我有类似的东西
<div id='test' style='height:150px;'>some stuff..</div>
<iframe id="test" src="http://www.myproject.com frameborder="0" scrolling="no">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test project</title>
<link rel="stylesheet" type="text/css" href="g_reset.css">
<script type="text/javascript" src="options.js"></script>
</head>
bunch of html...
<a id='click' href='#'>click<a/>
</iframe>
当我在我的iframe
.
在我的options.js
我有..
$('#click).click(function(){
alert('pop')
$('#test').attr('height','500');
})
警报会弹出,但它似乎并没有改变div
. 谁能帮我解决这个问题?多谢!