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(链接外部网站)加载到中央 div 中。单击导航链接时,会将我的其他 html 内容加载到该中央 div 中。
出于 SEO 的原因,我试图避免使用 iFrames... 只需要这一次来加载外部网页。
有什么想法吗?我一直在绞尽脑汁想用谷歌找到答案。
谢谢!!
您可以src从标签中删除属性iframe并使用以下内容:
src
iframe
<iframe id='someID' frameborder="0" scrolling="no" width="500" height="500">
对于onClick,您可以执行以下操作:
onClick
onClick='document.getElementById("someID").src="somepage.html";'
希望这可以帮助!