js input赋值
index.html:<body><inputtype="text"name="aa"value=""/><iframeid="f"scr="1.html"></ifra...
index.html:
<body>
<input type="text" name="aa" value="" />
<iframe id="f" scr="1.html"></iframe>
</body>
1.html:
<a href="#" onclick="ok()">ok</a>
function ok(){
这里如何向index.html的aa赋值?
}
谢谢大家,明明有35分.....怎么不能悬赏...烂百度 展开
<body>
<input type="text" name="aa" value="" />
<iframe id="f" scr="1.html"></iframe>
</body>
1.html:
<a href="#" onclick="ok()">ok</a>
function ok(){
这里如何向index.html的aa赋值?
}
谢谢大家,明明有35分.....怎么不能悬赏...烂百度 展开
1个回答
展开全部
index.html:
<body>
<input type="text" name="aa" value="" />
<iframe id="f" src="1.html"></iframe>
</body>
1.html:
<a href="#" onclick="ok()">ok</a>
<script type="text/javascript">
function ok(){
input=top.document.getElementsByName("aa");
input[0].value="哈哈";
}
</script>
这样可以了.需要首先指定框架名,父层用top代替,其他就好办了
唉,你的iframe处的src写成scr了,注意了
<body>
<input type="text" name="aa" value="" />
<iframe id="f" src="1.html"></iframe>
</body>
1.html:
<a href="#" onclick="ok()">ok</a>
<script type="text/javascript">
function ok(){
input=top.document.getElementsByName("aa");
input[0].value="哈哈";
}
</script>
这样可以了.需要首先指定框架名,父层用top代替,其他就好办了
唉,你的iframe处的src写成scr了,注意了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询