Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ゴール:
div をクリックすると、iFrame (リンクされた外部 Web サイトを含む) が中央の div に読み込まれます。ナビゲーション リンクをクリックすると、他の HTML コンテンツがその中央の div に読み込まれます。
SEO の理由から iFrame の使用を避けようとしています...外部 Web ページを読み込むために、今回だけ必要です。
何かご意見は?Google で答えを見つけようと頭を悩ませてきました。
ありがとう!!
srcタグから属性を削除しiframe、次を使用できます。
src
iframe
<iframe id='someID' frameborder="0" scrolling="no" width="500" height="500">
のonClick場合、次のようなことができます。
onClick
onClick='document.getElementById("someID").src="somepage.html";'
お役に立てれば!