0

http://123.comという Web サイトがあるとします。

Web サイトの index.html ページには、theframe と呼ばれる iframe が含まれています。iframe コンテンツ用に 3 つの異なるページ (1.html、2.html、3.html) があり、サイト内の特定のボタンをクリックすると表示されます。iframe のデフォルトのコンテンツは 1.html です。

私の質問は、iframe に表示される 2.html または 3.html でhttp://123.comを共有する必要がある場合、共有するために facebook/blog/IM にリンクをどのように記述すればよいですか? ウェブサイトを変更せずに方法はありますか?

ありがとうございました。

4

1 に答える 1

0

you have hard coded value in iframe src

use querystring

make a parameter named dstntn palce in your url

http://123.com/?dstntn=your_url

and then get it in a var by $_REQUEST['dstntn'];

and give var to iframe src

then change iframe by changing dstntn value by 1.html || 2.html

NOTE: read encoded and decoded form for query string i think dots are not acceptable

于 2013-03-05T08:17:06.950 に答える