框架网页 top left main, 从main frame 中访问 top中的元素怎么办?
在top中,<inputtype="text"value="abc"id="abc">在main中有一个按纽<inputtype="button"onclick="cha...
在top中,<input type="text" value="abc" id="abc">
在main中有一个按纽<input type="button" onclick="changeValue();">
<script>
function changeValue(){
怎么样写js改变top中文本框的值
}
</script> 展开
在main中有一个按纽<input type="button" onclick="changeValue();">
<script>
function changeValue(){
怎么样写js改变top中文本框的值
}
</script> 展开
3个回答
展开全部
分别列出三个文件的内容如下:
(1) frame.html
<frameset rows="30%, 70%">
<frame name="topframe" src="top.html">
<frameset cols="40%, 60%">
<frame src="left.html">
<frame src="main.html">
</frameset>
</frameset>
(2) top.html
<input type="text" value="abc" id="abc">
(3) main.html
<input type="button" onclick="changeValue();">
<script>
function changeValue(){
parent.topframe.abc.value='I have be changed!!!';
}
</script>
(1) frame.html
<frameset rows="30%, 70%">
<frame name="topframe" src="top.html">
<frameset cols="40%, 60%">
<frame src="left.html">
<frame src="main.html">
</frameset>
</frameset>
(2) top.html
<input type="text" value="abc" id="abc">
(3) main.html
<input type="button" onclick="changeValue();">
<script>
function changeValue(){
parent.topframe.abc.value='I have be changed!!!';
}
</script>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
分别列出三个文件的内容如下:
(1) frame.html
<frameset rows="30%, 70%">
<frame name="topframe" src="top.html">
<frameset cols="40%, 60%">
<frame src="left.html">
<frame src="main.html">
</frameset>
</frameset>
(2) top.html
<input type="text" value="abc" id="abc">
(3) main.html
<input type="button" onclick="changeValue();">
<script>
function changeValue(){
parent.topframe.abc.value='I have be changed!!!';
}
</script>
(1) frame.html
<frameset rows="30%, 70%">
<frame name="topframe" src="top.html">
<frameset cols="40%, 60%">
<frame src="left.html">
<frame src="main.html">
</frameset>
</frameset>
(2) top.html
<input type="text" value="abc" id="abc">
(3) main.html
<input type="button" onclick="changeValue();">
<script>
function changeValue(){
parent.topframe.abc.value='I have be changed!!!';
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
分别列出三个文件的内容如下:
(1)
frame.html
<frameset
rows="30%,
70%">
<frame
name="topframe"
src="top.html">
<frameset
cols="40%,
60%">
<frame
src="left.html">
<frame
src="main.html">
</frameset>
</frameset>
(2)
top.html
<input
type="text"
value="abc"
id="abc">
(3)
main.html
<input
type="button"
onclick="changeValue();">
<script>
function
changeValue(){
parent.topframe.abc.value='I
have
be
changed!!!';
}
</script>
(1)
frame.html
<frameset
rows="30%,
70%">
<frame
name="topframe"
src="top.html">
<frameset
cols="40%,
60%">
<frame
src="left.html">
<frame
src="main.html">
</frameset>
</frameset>
(2)
top.html
<input
type="text"
value="abc"
id="abc">
(3)
main.html
<input
type="button"
onclick="changeValue();">
<script>
function
changeValue(){
parent.topframe.abc.value='I
have
be
changed!!!';
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询