日期:2014-05-16 浏览次数:20455 次
<html> <body> <iframe id="xx" name="xx"></iframe> </body> </html>
<html> <body> <input id="xx" name="xx" value="result"></input> </body> </html>
<html>
<body>
<iframe id="test" src="3.html" onload="alertValue(this, 'a')"></iframe>
<script>
function alertValue(t, id){
var v;
if( t ){
if( t.contentDocument ){ // 非ie
v = t.contentDocument.getElementById(id).value;
}else if( t.Document ){ // ie
v = t.Document.getElementById(id).value;
}
}
alert( v )
}
</script>
</body>
</html>