0

次のテキストが含まれていると言える iframe があります。

<h1> Hello World</h1><h2>Good Morning</h2>
<h3>Try this http://www.google.com</h3></body></html>

上記のリンクを読んでアクセスしたいです。何か案が?このページからクッキーを取得する必要があるため、コンソールを使用してそれを行うことはできません

4

2 に答える 2

0

ドメインの外にある場合でも、iframe のコンテンツを取得します。

var link = $('#MyiFrame').contents().find('h3').text();
//now parse the link variable to what you need, maybe split it at :// 
//and the following space afterwards

幸運を!

于 2012-06-27T14:31:12.843 に答える
0

iframe が親ページと同じドメインでない限り、これを行うことはできません。

その場合は、次のスクリプトを使用できます。

var link = $('#iframeid').contents().find('h3').html(); //Thanks to rob for the correction

次に、変数の他のテキストからリンクを除外するだけです。

于 2012-06-27T14:29:13.670 に答える