我想获得第二帧,它是使用jquery
从iframe组动态创建的例如
<div id="mytesting">
<iframe src="http://facebook.com"></iframe>
<iframe src="http://google.com"></iframe>
<iframe src="http://spam.com"></iframe>
</div>
从此我希望此iframe中的<iframe src="http://google.com"></iframe>
iframe每次都会动态更改网址
答案 0 :(得分:0)
这里没有必要使用jQuery:
console.log( document.getElementsByTagName( 'iframe' )[1].src );
document.getElementsByTagName( 'iframe' )[1].src = "http://google.com";
jQuery等价物将是这样的,不一定更清楚:
console.log( $($('iframe')[1]).attr( 'src' ) );
$($('iframe'][1]).attr( 'src', "http://google.com" );