我尝试通过 iframe 在 html 页面中创建一个迷你浏览器:
<table id="frame" height="100%" width="100%" border="0">
<tr>
<td>Enter the address:
<label for="address"></label>
<input type="text" name="address" id="address">
<input type="submit" name="go" id="go" value="Go"></td>
</tr>
<tr>
<td><iframe src="http://www.google.com" width="100%" height="100%"></iframe></td>
</tr>
</table>
但我不知道如何获取地址值并放置而不是 google.com,如何使用 html 或 javascript 做到这一点?