Jqeury 取iframe 的值
Html 代码
<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>