js如何修改iframe 中元素的属性

1.htm中的内容“<iframeid="a"src="2.htm"></iframe>”2.htm中的内容“<form><inputname=b></form>”现在j... 1.htm 中的内容“<iframe id="a" src="2.htm"></iframe>”

2.htm中的内容 “<form><input name=b ></form>”

现在js代码在1.htm中,如何通过js把2.htm中,input 的disabled 改成true
我写的代码如下,使用起来并不对,请大家指正
<script>
var a=document.getElementById("a");
b=a.document.getElementsByName("b");
b.disabled=true;
</script>
1楼的,你的方法我试了 不对吧

1楼的,你试着把触发的<a>去掉,让网页加载就自动把input的属性更改,你会发现,你的写法是用不了的,我也测试了,当然,有a触发是能用的
展开
 我来答
shenchaoliang
推荐于2016-03-09 · TA获得超过1163个赞
知道大有可为答主
回答量:810
采纳率:0%
帮助的人:1501万
展开全部
网页加载的时候,iframe里面的还没加载完当然就更改不了
1.纯js的
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript">
function c(){
var a;
try{
if (document.all){
a = document.frames["a"].document;

}else{
a = document.getElementById("a").contentDocument;
}
var b = a.getElementsByName("b")[0];
b.disabled = true;
clearInterval(d);
}
catch(ex){

}
}
</script>
</head>
<body>
<iframe id="a" src="b.html" onload="c();"></iframe>
</body>
</html>
2.使用jQuery框架的,建议使用,封装了js,操作DOM等等非常方便
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript" src="/js/jquery-1.4.4.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
<!--//
$(document).ready(function(){
if ($.browser.msie){
$('#a').ready(function(){
$(window.frames["a"].document).find("input").attr("disabled","disabled");
});
}
else{
$('#a').load(function(){
$('#a').contents().find("input").attr("disabled","disabled");
});
}
});
//-->
</script>
</head>
<body>
<iframe id="a" name="a" src="iframechild.html"></iframe>
</body>
</html>

b.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>

<body>
<form name="cform"><input type="text" name="b" /></form>
</body>
</html>
搞笑游戏君
2018-04-12 · TA获得超过4989个赞
知道小有建树答主
回答量:682
采纳率:0%
帮助的人:37.6万
展开全部

网页加载的时候,iframe里面的还没加载完当然就更改不了。

1.纯js的

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>无标题文档</title>

<script language="javascript">

function c(){

var a;

try{

if (document.all){

a = document.frames["a"].document;

}else{

a = document.getElementById("a").contentDocument;

}

var b = a.getElementsByName("b")[0];

b.disabled = true;

clearInterval(d);

}

catch(ex){

}

}

</script>

</head>

<body>

<iframe id="a" src="b.html" onload="c();"></iframe>

</body>

</html>

2.使用jQuery框架的,建议使用,封装了js,操作DOM等等非常方便

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>无标题文档</title>

<script language="javascript" src="/js/jquery-1.4.4.js" type="text/javascript"></script>

<script language="javascript" type="text/javascript">

<!--//

$(document).ready(function(){

if ($.browser.msie){

$('#a').ready(function(){

$(window.frames["a"].document).find("input").attr("disabled","disabled");

});

}

else{

$('#a').load(function(){

$('#a').contents().find("input").attr("disabled","disabled");

});

}

});

//-->

</script>

</head>

<body>

<iframe id="a" name="a" src="iframechild.html"></iframe>

</body>

</html>

b.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>无标题文档</title>

</head>

<body>

<form name="cform"><input type="text" name="b" /></form>

</body>

</html>

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式