我希望能够拥有它,因此当用户可以在表单输入中输入他们想要的任何网站并单击提交并将该网站加载到 iframe 中时。
我的代码是:
<body>
<form method="post" target="browser">
<input style="width:82%;" placeholder="Put the website here" name="url" type="text" />
<input style="width:8%;" name="submit" type="button" value="Go" />
</form>
<iframe name="browser" src="http://google.com" style="height:100%; width:100%"></iframe>
</body>
有点像迷你浏览器,网站还有更多内容,除了玩笑之外不会用于实际目的,所以我不担心不良做法。
最好不是javascript,但如果是的话也没关系。
谢谢!