我希望我的 iFrame 窗口显示我从表单文本框中输入的 URL,为此我希望将 iframe src="" 更改为表单字段输入。我怎样才能做到这一点?这是我打算使用的示例代码。
<html>
<head>
<title>Blah.</title>
<link href="style.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form>
Enter URL: <input type="text" />
<input type="submit" value="GO" />
</form>
<iframe src="" frameborder="0" marginwidth="0" scrolling="yes"></iframe>
</body>
</html>