如何在最小化框架的同一窗口中打开new_set
?
要在同一窗口中打开link
,会有一个值为link
的属性目标。但我想知道如何在最小化或自定义框架的同一窗口中打开"_parent"
?
谢谢你帮助我。
答案 0 :(得分:0)
作为初学者问这个问题,我现在为未来的初学者读者提供解决方案。
要在具有最小化框架的同一窗口中打开链接,会在html中使用名为<iframe>
的标记,
示例强>
<html>
<body>
<h2>HTML Iframes</h2>
<p>You can use the height and width attributes to specify the size of the iframe:</p>
<iframe src="https://www.google.co.in/" height="200" width="300"></iframe>
</body>
</html>